Tools.Decrypt 1.1.0

dotnet add package Tools.Decrypt --version 1.1.0
NuGet\Install-Package Tools.Decrypt -Version 1.1.0
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="Tools.Decrypt" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tools.Decrypt --version 1.1.0
#r "nuget: Tools.Decrypt, 1.1.0"
#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 Tools.Decrypt as a Cake Addin
#addin nuget:?package=Tools.Decrypt&version=1.1.0

// Install Tools.Decrypt as a Cake Tool
#tool nuget:?package=Tools.Decrypt&version=1.1.0

Tools.Decrypt

A C# library for easier decryption.

Attention:

  • 1.0.0 is for .NET 6.0
  • 1.1.0 and later are for .NET 8.0

Usage

Text Decryptor

Base 16
string input = "1a2b3c4d";
byte[] inputBytes = Encoding.UTF8.GetBytes(input);
byte[] decodedBytes = Base16.Decode(inputBytes);
string decodedString = Encoding.UTF8.GetString(decodedBytes);

Console.WriteLine("Input: " + input);
Console.WriteLine("Decoded: " + decodedString);
Base 64
string input = "SGVsbG8gV29ybGQh";
byte[] inputBytes = Encoding.UTF8.GetBytes(input);
byte[] decodedBytes = Base64.Decode(inputBytes);
string decodedString = Encoding.UTF8.GetString(decodedBytes);

Console.WriteLine("Input: " + input);
Console.WriteLine("Decoded: " + decodedString);
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.
  • net8.0

    • No dependencies.

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.1.0 108 3/13/2024
1.0.0 77 3/13/2024