HaemmerElectronics.SeppPenner.AESCryptoLib
1.2.2
Prefix Reserved
dotnet add package HaemmerElectronics.SeppPenner.AESCryptoLib --version 1.2.2
NuGet\Install-Package HaemmerElectronics.SeppPenner.AESCryptoLib -Version 1.2.2
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="HaemmerElectronics.SeppPenner.AESCryptoLib" Version="1.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HaemmerElectronics.SeppPenner.AESCryptoLib --version 1.2.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: HaemmerElectronics.SeppPenner.AESCryptoLib, 1.2.2"
#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 HaemmerElectronics.SeppPenner.AESCryptoLib as a Cake Addin #addin nuget:?package=HaemmerElectronics.SeppPenner.AESCryptoLib&version=1.2.2 // Install HaemmerElectronics.SeppPenner.AESCryptoLib as a Cake Tool #tool nuget:?package=HaemmerElectronics.SeppPenner.AESCryptoLib&version=1.2.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AESCryptoLib
AESCryptoLib is an assembly/ library to encrypt strings with AES.
Available for
- Net 8.0
- Net 9.0
Net Core and Net Framework latest and LTS versions
Basic usage
public void Test()
{
ICrypter cryptor = new Crypter();
string salt = cryptor.GetRandomSalt();
string encrypted = cryptor.Encrypt(AesKeySize.Strong, "Test", "Password", salt, 50000, HashAlgorithmName.SHA256);
string decrypted = cryptor.Decrypt(AesKeySize.Strong, encrypted, "Password", salt, 50000, HashAlgorithmName.SHA256);
}
The project can be found on nuget.
Install
dotnet add package HaemmerElectronics.SeppPenner.AESCryptoLib
Change history
See the Changelog.
Product | Versions 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. net9.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
-
net9.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.2.2 | 96 | 11/24/2024 |
1.2.1 | 163 | 12/7/2023 |
1.2.0 | 152 | 11/21/2023 |
1.1.10 | 61 | 11/16/2023 |
1.1.9 | 134 | 11/13/2023 |
1.1.8 | 360 | 11/10/2022 |
1.1.7 | 327 | 11/10/2022 |
1.1.6 | 381 | 10/30/2022 |
1.1.5 | 464 | 2/9/2022 |
1.1.4 | 364 | 11/9/2021 |
1.1.3 | 339 | 8/9/2021 |
1.1.2 | 378 | 7/25/2021 |
1.1.1 | 393 | 2/21/2021 |
1.0.9 | 541 | 6/5/2020 |
1.0.8 | 586 | 11/8/2019 |
1.0.6 | 552 | 10/28/2019 |
1.0.5 | 618 | 6/23/2019 |
1.0.0.4 | 625 | 5/5/2019 |
1.0.0.3 | 1,070 | 3/15/2018 |
1.0.0.2 | 1,103 | 2/11/2018 |
1.0.0.1 | 1,011 | 8/16/2017 |
1.0.0 | 886 | 8/10/2017 |
Version 1.2.2.0 (2024-11-24): Removed support for Net6.0, added support for Net9.0, updated NuGet packages.