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.
<PackageVersion Include="Grizlah.Steganography.F5.StegSharp.Infrastructure" Version="1.0.10" />
                    
Directory.Packages.props
<PackageReference Include="Grizlah.Steganography.F5.StegSharp.Infrastructure" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#:package Grizlah.Steganography.F5.StegSharp.Infrastructure@1.0.10
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Grizlah.Steganography.F5.StegSharp.Infrastructure&version=1.0.10
                    
Install as a Cake Addin
#tool nuget:?package=Grizlah.Steganography.F5.StegSharp.Infrastructure&version=1.0.10
                    
Install as a Cake Tool

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 639 11/24/2023
1.0.9 468 9/22/2023
1.0.8 489 9/22/2023
1.0.7 459 9/22/2023
1.0.6 483 9/22/2023
1.0.5 671 5/9/2023
1.0.4 642 5/7/2023
1.0.3 595 5/7/2023
1.0.2 633 5/7/2023
1.0.1 598 5/7/2023