Multiparty encryption in .NET?

I learned about GnuPG's multi-part encryption scheme, where several public and private keys allow many people to modify and access shared information. Is there a similar library in .NET?

In addition, let's say one of the users forgets the passphrase protecting his private key. Is there a library that supports restoring another private key without affecting other users?

Thank!

+5
source share
1 answer

Bouncy Castle crypto library supports OpenPGP and several others. This shortens the documentation a bit, but supports shared keys.

0
source

All Articles