cryptography - Is it possible to encrypt with private key using .net RSACryptoServiceProvider? -
I know that RSACryptoServiceProvider can encrypt with the public key, then it can be decrypted with the private key.
Is it possible to encrypt with a private key and it is possible to decrypt with the public key using RSACRPT service provider?
no Not that how any public / private key encryption works, you can only encrypt with the public key, and can decrypt with only the private key.
Comments
Post a Comment