GCrypt 1.1.1

Requires NuGet 2.12 or higher.

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

// Install GCrypt as a Cake Tool
#tool nuget:?package=GCrypt&version=1.1.1

GCrypt

A .NET Core/Framework library for all your encryption needs.

Installation

To use GCrypt in your C# project, you can either download the GCrypt C# .NET library directly from the Github repository or, if you have the NuGet package manager installed, you can grab them automatically.

PM> Install-Package GCrypt

Once you have the GCrypt library properly referenced in your project, you can include calls to them in your code.

Add the following namespaces to use the library:

using GCrypt;

Usage

The below code can be used in any .NET C# project.

public class Program
{
	public static void Main(string[] args)
	{
		//Once In Program.cs Or Startup.cs
		GCryptBuilder.Create()
			.AddTripleDES(a => {
				a.Key = "gcrypt";
				a.Mode = CipherMode.ECB;
				a.Padding = PaddingMode.PKCS7;
			})
			.BuildStatic();


		//Where Needed
		string originalString = Guid.NewGuid().ToString();

		string encryptedString = GCrypter.Encrypt(originalString);

		string decryptedString = GCrypter.Decrypt(encryptedString);
	}
}
Stack Multiple Providers :
GCryptBuilder.Create()
	.AddReverse(a => a.ChunkSize = 5)
	.AddTripleDES(a => {
		a.Key = "gcrypt";
		a.Mode = CipherMode.ECB;
		a.Padding = PaddingMode.PKCS7;
	})
	.AddBase64()
	.BuildStatic();

Once initialized Encrypt / Decrypt methods will use these providers in their order.

Create Your Own Providers

You can create a Provider by Implementing IGCryptProvider.

public class MyProvider : IGCryptProvider
{
	public string Config { get; set; }

	public MyProvider(string config)
	{
		//SOME CODE
	}

	public string Encrypt(string originalString)
	{
		//SOME CODE
	}

	public string Decrypt(string encryptedString)
	{
		//SOME CODE
	}
}

And use them something like this :

GCryptBuilder.Create()
	.AddReverse(a => a.ChunkSize = 5)
	.Add<MyProvider>(a => a.Config = "Some Config")
	.BuildStatic();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 2.0

    • No dependencies.
  • .NETFramework 3.5

    • No dependencies.
  • .NETFramework 4.0

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • .NETStandard 2.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.1 655 1/22/2022
1.0.0 846 6/6/2020