Is it possible to use pure Encrypting and Decrypting keys in asymmetric cryptography instead of priv
Posted
by macropas
on Stack Overflow
See other posts from Stack Overflow
or by macropas
Published on 2010-06-17T11:29:06Z
Indexed on
2010/06/17
13:13 UTC
Read the original article
Hit count: 227
Is it possible to use pure Encrypting and Decrypting keys instead of private and public keys? As I know in .Net asymmetric RSA implementation private key RSAParameters parameters = (new RSACryptoServiceProvider()).ExportParameters(true)
is a superset of public key. And using private key we can both encrypt and decrypt our data. But I need key only for decrypting data. How to do it?
I experimented on nulling RSAParameters fields, but RSACryptoServiceProvider object can't import such parameters.
© Stack Overflow or respective owner