I have private and public keys that was created in PGPTool and I need to decrypt file using C# with private key and password, but every PGP library that I was using throw exception.
Library that I was try in my code: PGPCore, OpenPGP, ChoPGP. All this library using bouncycastle lib in background.
Exception throw on this lin
PgpObjectFactory objFactory = new PgpObjectFactory(PgpUtilities.GetDecoderStream(inputStream));
{"Secret key for message not found."}
I want to find solution for decrypt file using keys from PGPTool.