Grizlah.Steganography.F5.StegSharp.Infrastructure 1.0.10

dotnet add package Grizlah.Steganography.F5.StegSharp.Infrastructure --version 1.0.10
NuGet\Install-Package Grizlah.Steganography.F5.StegSharp.Infrastructure -Version 1.0.10
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Grizlah.Steganography.F5.StegSharp.Infrastructure" Version="1.0.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Grizlah.Steganography.F5.StegSharp.Infrastructure --version 1.0.10
#r "nuget: Grizlah.Steganography.F5.StegSharp.Infrastructure, 1.0.10"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Grizlah.Steganography.F5.StegSharp.Infrastructure as a Cake Addin
#addin nuget:?package=Grizlah.Steganography.F5.StegSharp.Infrastructure&version=1.0.10

// Install Grizlah.Steganography.F5.StegSharp.Infrastructure as a Cake Tool
#tool nuget:?package=Grizlah.Steganography.F5.StegSharp.Infrastructure&version=1.0.10

F5-StegSharp - Steganography Library for .NET

F5-StegSharp is a cross-platform lightweight and efficient C# library providing seamless integration of the F5 steganography algorithm in .NET applications. Supports baseline color JPEG images, each step in baseline jpeg encoding, matrix encoding, and adaptive embedding. Ideal for secure data transmission through image files.

Features

  • Implementation of each step in baseline jpeg compression. This includes:
    • Color space conversion (RGB → YCbCr)
    • 2-D Discrete Cosine Transformation
    • Quantization
    • Run-Length Encoding
    • Huffman encoding
  • Implementation of F5 steganography algorithm for hiding and extracting messages
  • Matrix encoding and adaptive embedding for improved robustness
  • Permutative Straddling for dispersing coefficient changes

Installation

Install the NuGet package using the Package Manager Console: PM> Install-Package Grizlah.Steganography.F5.Infrastructure

Or search for F5-StegSharp in the NuGet Package Manager in Visual Studio.

Usage

After installing the package, register the library's services in your DI container:

public void ConfigureServices(IServiceCollection services)
{
    services.AddF5Services();
}

Hiding a message in a JPEG image

using StegSharp.Application.Common.Interfaces;

// ...

var stegoService = serviceProvider.GetService<IF5Service>();
stegoService.Embed(image, "password", "Your Secret message", binaryWriter);;

Extracting a message from a JPEG image

// ...
using StegSharp.Application.Common.Interfaces;

var stegoService = serviceProvider.GetService<IF5Service>();
string message = stegoService.Extract("password", binaryReader);;

License

This project is licensed under the MIT License.

Support

If you encounter any issues or have questions, please open an issue on the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.10 494 11/24/2023
1.0.9 409 9/22/2023
1.0.8 415 9/22/2023
1.0.7 399 9/22/2023
1.0.6 409 9/22/2023
1.0.5 575 5/9/2023
1.0.4 541 5/7/2023
1.0.3 497 5/7/2023
1.0.2 531 5/7/2023
1.0.1 510 5/7/2023