DotNetPG 1.0.1
dotnet add package DotNetPG --version 1.0.1
NuGet\Install-Package DotNetPG -Version 1.0.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="DotNetPG" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetPG" Version="1.0.1" />
<PackageReference Include="DotNetPG" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DotNetPG --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DotNetPG, 1.0.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.
#:package DotNetPG@1.0.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DotNetPG&version=1.0.1
#tool nuget:?package=DotNetPG&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DotNet PG - The OpenPgp library in .NET
DotNet PG is an implementation of the OpenPgp standard in .NET. It implements RFC 9580 and provides encryption with public key or symmetric cryptographic algorithms, digital signatures, compression, and key management.
Requirement
- .NET 9.x or later.
- BouncyCastle.NET library provides cryptography algorithms.
Features
- Support data signing & encryption.
- Support key management: key generation, key reading, key decryption.
- Support public-key algorithms: RSA, ECDSA, EdDSA and ECDH.
- Support symmetric ciphers: Blowfish, Twofish, AES, Camellia.
- Support AEAD ciphers: EAX, OCB, GCM.
- Support hash algorithms: SHA-256, SHA-384, SHA-512, SHA-224, SHA3-256, SHA3-512.
- Support compression algorithms: Zip, Zlib, BZip2.
- Support ECC curves: secp256r1, secp384r1, secp521r1, brainpoolP256r1, brainpoolP384r1, brainpoolP512r1, Curve25519, Curve448, Ed25519, Ed448.
- Support symmetric ciphers & hash algorithms for message decryption (backward compatibility): TripleDES, IDEA, CAST5, MD5, SHA-1, RIPEMD-160.
Installation
Install via NuGet:
Install-Package DotNetPG
Or via the .NET Core command line interface:
dotnet add package DotNetPG
Either commands, from Package Manager Console or .NET Core CLI, will download and install DotNetPG.
Basic usage of DotNet PG
Sign and verify cleartext message
using DotNetPG;
var armoredPublicKey = "-----BEGIN PGP PUBLIC KEY BLOCK-----"
var armoredPrivateKey = "-----BEGIN PGP PRIVATE KEY BLOCK-----";
var passphrase = "Your passphrase";
var publicKey = OpenPgp.ReadPublicKey(armoredPublicKey);
var privateKey = OpenPgp.DecryptPrivateKey(armoredPrivateKey, passphrase);
var cleartextMessage = OpenPgp.CreateCleartextMessage("Hello, DotNet PG!");
var signedMessage = cleartextMessage.Sign([privateKey]);
var verifications = signedMessage.Verify([publicKey]);
Licensing
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
| 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 was computed. 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. net10.0 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- BouncyCastle.Cryptography (>= 2.6.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Refactor bulk encryption