PgpCore
PgpCore copied to clipboard
.NET Core class library for using PGP
Is there a way to encrypt network stream without loading the entire file into memory stream first?
Method below ```csharp public async Task VerifyClearAsync(string input, string output) { using (Stream inputStream = await input.GetStreamAsync()) using (Stream outputStream = new MemoryStream()) { bool verified = await VerifyClearAsync(inputStream, outputStream);...
I am having issues generating keys with different PublicKeyAlgorithmTag and HasAlgorithmTag. The code below produces an error (see below). If I remove the line "pgp.PublicKeyAlgorithm.." everything works but it does...
I have a case where I have 2 .key files that are required to be within the private-keys-v1.d folder before the file can be decrypted. I currently have both private...
Add a method to produce a detached signature without the original message
When attempting to verify a clear signed message an error is returned as it is expected that the VerifyClear method will be used instead. The Verify method should either call...
Hi, I know that there's a closed issue with the same name as this one but I still got this error when I was trying to decrypt a .zip.pgp file....
The current error messages are pretty unhelpful and mostly just bubble up from BouncyCastle. Ideally we would provide a more useful error to the user. #222 - if the wrong...
At the moment the `EncryptionKeys` object choses the best key for the job but it would be good to allow the user to set the key when required. This is...