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" />
                    
Directory.Packages.props
<PackageReference Include="DotNetPG" />
                    
Project file
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
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=DotNetPG&version=1.0.1
                    
Install as a Cake Tool

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

Features

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

BSD 3-Clause

For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
Product 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.

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.0.1 107 1/11/2026
1.0.0 101 1/10/2026

Refactor bulk encryption