Possible Duplicate:
Is possible to encrypt with private key using .net RSACryptoServiceProvider?
Hello every one I made a certificate and how i can get the private key of my certificate to encrypt text with RSA in c#?
Possible Duplicate:
Is possible to encrypt with private key using .net RSACryptoServiceProvider?
Hello every one I made a certificate and how i can get the private key of my certificate to encrypt text with RSA in c#?
Private key does not encrypt. The Private Key's purpose is to decrypt and the Public Key's purpose is to encrypt. Usually the only time you would encrypt with the private key is during a signing process.
You can read more on Public-key cryptography at Wikipedia.