Hyprx.Crypto
0.0.0-alpha.3
dotnet add package Hyprx.Crypto --version 0.0.0-alpha.3
NuGet\Install-Package Hyprx.Crypto -Version 0.0.0-alpha.3
<PackageReference Include="Hyprx.Crypto" Version="0.0.0-alpha.3" />
<PackageVersion Include="Hyprx.Crypto" Version="0.0.0-alpha.3" />
<PackageReference Include="Hyprx.Crypto" />
paket add Hyprx.Crypto --version 0.0.0-alpha.3
#r "nuget: Hyprx.Crypto, 0.0.0-alpha.3"
#:package Hyprx.Crypto@0.0.0-alpha.3
#addin nuget:?package=Hyprx.Crypto&version=0.0.0-alpha.3&prerelease
#tool nuget:?package=Hyprx.Crypto&version=0.0.0-alpha.3&prerelease
Hyprx.Crypto
Overview
Cryptography related functionality such as
- Aes 256 CBC Encryption Provider which encrypts then MACS.
- ChaCha20 SymmetricAlgorithm
- Blake 2b
- Salsa20 SymmetricAlgorithm
Usage
using Hyprx.Crypto;
using Hyprx.Extras
var options = new Aes256EncryptionProviderOptions
{
Key = System.Text.Encoding.UTF8NoBom.GetBytes("unsafe password")
};
var aes = new Aes256EncryptionProvider(options);
var encrypted = aes.Encrypt("my data");
Console.WriteLine(encrypted);
var decrypted = aes.Decrypt(encrypted);
Console.WriteLine(decrypted);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net10.0 is compatible. 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. |
-
net10.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 |
---|---|---|
0.0.0-alpha.3 | 116 | 7/10/2025 |
0.0.0-alpha.2 | 113 | 7/10/2025 |
0.0.0-alpha.1 | 122 | 6/25/2025 |
0.0.0-alpha.0 | 130 | 6/17/2025 |
# Hyprx.Crypto Changelog
## 0.0.0-alpha.0
- Aes 256 CBC Encryption Provider which encrypts then MACS.
- ChaCha20 SymmetricAlgorithm
- Blake 2b
- Salsa20 SymmetricAlgorithm
## 0.0.0-alpha.1
- Add Pbkdf2Hash which acts as a enum for SHA names and HMACs.
- Add a kdf to AesGcm and additional metadata so that the provider can
decrypt so long as the key is the same.
- Rename Aes256EncryptionProvider to AesEncryptionProvider, move to using Spans
and BinaryPrimitive methods rather than using the Binary reader.
- Add tests for AesGcm and Aes Encryption providers.