Top "Rsacryptoserviceprovider" questions

The RSACryptoServiceProvider object performs asymmetric encryption and decryption using the implementation of the RSA algorithm provided by the cryptographic service provider (CSP).

How to export non-exportable private key from store

I need to export private key from Windows store. What should I do if the key is marked as non-exportable? …

.net encryption bouncycastle rsacryptoserviceprovider
Error occurred while decoding OAEP padding

While decrypting text using RSACryptoServiceProvider.Decrypt, I am getting the error: Error occurred while decoding OAEP padding. Here's my code: …

c# encryption rsa digital-signature rsacryptoserviceprovider
The RSA key container could not be opened

I've been developing an ASP.NET site on an older machine running XP home. I recently got a new Win 7 …

asp.net configuration permissions rsacryptoserviceprovider
Best way to initiate RSACryptoServiceProvider from x509Certificate2?

What is the best way to initate a new RSACryptoServiceProvider object from an X509Certificate2 I pulled out of a …

c# .net cryptography certificate rsacryptoserviceprovider
Implementing RSA in C#

I'm currently trying to implement a class to handle secure communications between instances of my app using RSACrytoServiceProveider class. First …

c# rsa rsacryptoserviceprovider
RSACryptoServiceProvider initialize with own public key and private key

I'm trying to initialize RSACryptoServiceProvider with my own public and private keys. As far as I could research, the way …

c# cryptography rsacryptoserviceprovider
How to store a public key in a machine-level RSA key container

I'm having a problem using a machine level RSA key container when storing only the public key of a public/…

c# cryptography rsacryptoserviceprovider
signature with SHA256

I have a smartcard and I need to sign a file with this. That is a big problem as I …

rsa sha1 signature sha256 rsacryptoserviceprovider
Generate public-private key pair and show them in textbox in asp.net

any body can explain the parameters of RSAParameters i had seen the parameters like p,d,e,q,... i need …

c# asp.net rsacryptoserviceprovider
C# RSACryptoServiceProvider ToXmlString()/FromXmlString()

EDIT2: Seems Convert.FromBase64String is my savior. Does anyone know if a comma would every be in such a …

c# encryption character-encoding cryptography rsacryptoserviceprovider