Gapotchenko.FX.Security.Cryptography
2024.1.3
Prefix Reserved
dotnet add package Gapotchenko.FX.Security.Cryptography --version 2024.1.3
NuGet\Install-Package Gapotchenko.FX.Security.Cryptography -Version 2024.1.3
<PackageReference Include="Gapotchenko.FX.Security.Cryptography" Version="2024.1.3" />
paket add Gapotchenko.FX.Security.Cryptography --version 2024.1.3
#r "nuget: Gapotchenko.FX.Security.Cryptography, 2024.1.3"
// Install Gapotchenko.FX.Security.Cryptography as a Cake Addin #addin nuget:?package=Gapotchenko.FX.Security.Cryptography&version=2024.1.3 // Install Gapotchenko.FX.Security.Cryptography as a Cake Tool #tool nuget:?package=Gapotchenko.FX.Security.Cryptography&version=2024.1.3
Overview
The module provides an extended set of cryptography primitives and algorithms for .NET.
ARC4
ARC4 (Alleged Rivest Cipher 4 also known as ARCFOUR or RC4) is a stream cipher. While it is remarkable for its simplicity and performance, nowadays its usage is limited due to discovered limitations and vulnerabilities.
Still, ARC4 may be a good enough fit for less sensitive tasks. For example, it can be used for communication with legacy or energy-constrained systems.
Example:
using Gapotchenko.FX.Security.Cryptography;
byte[] messageToEncrypt = ...;
byte[] key = ...;
// Encryption
byte[] encryptedMessage;
using (var arc4 = Arc4.Create())
{
arc4.Key = key;
var ms = new MemoryStream();
using (var cryptoStream = new CryptoStream(ms, arc4.CreateEncryptor(), CryptoStreamMode.Write))
cryptoStream.Write(messageToEncrypt, 0, messageToEncrypt.Length);
encryptedMessage = ms.ToArray();
}
// Decryption
byte[] decryptedMessage;
using (var arc4 = Arc4.Create())
{
arc4.Key = key;
var ms = new MemoryStream();
using (var cryptoStream = new CryptoStream(ms, arc4.CreateDecryptor(), CryptoStreamMode.Write))
cryptoStream.Write(encryptedMessage, 0, encryptedMessage.Length);
decryptedMessage = ms.ToArray();
}
Other Modules
Let's continue with a look at some other modules provided by Gapotchenko.FX:
- Gapotchenko.FX
- Gapotchenko.FX.AppModel.Information
- Gapotchenko.FX.Collections
- Gapotchenko.FX.Console
- Gapotchenko.FX.Data
- Gapotchenko.FX.Diagnostics
- Gapotchenko.FX.IO
- Gapotchenko.FX.Linq
- Gapotchenko.FX.Math
- Gapotchenko.FX.Memory
- ➴ Gapotchenko.FX.Security.Cryptography
- Gapotchenko.FX.Text
- Gapotchenko.FX.Threading
- Gapotchenko.FX.Tuples
Or look at the full list of modules.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. 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 is compatible. 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 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. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 is compatible. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 is compatible. net472 is compatible. 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. |
-
.NETCoreApp 2.1
- Gapotchenko.FX (>= 2024.1.3)
-
.NETCoreApp 3.0
- Gapotchenko.FX (>= 2024.1.3)
-
.NETFramework 4.6.1
- Gapotchenko.FX (>= 2024.1.3)
-
.NETFramework 4.7.1
- Gapotchenko.FX (>= 2024.1.3)
-
.NETFramework 4.7.2
- Gapotchenko.FX (>= 2024.1.3)
-
.NETStandard 2.0
- Gapotchenko.FX (>= 2024.1.3)
-
.NETStandard 2.1
- Gapotchenko.FX (>= 2024.1.3)
-
net5.0
- Gapotchenko.FX (>= 2024.1.3)
-
net6.0
- Gapotchenko.FX (>= 2024.1.3)
-
net7.0
- Gapotchenko.FX (>= 2024.1.3)
-
net8.0
- Gapotchenko.FX (>= 2024.1.3)
-
net9.0
- Gapotchenko.FX (>= 2024.1.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.