Tagged Questions

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

learn more… | top users | synonyms

6
votes
1answer
386 views

Interoperability between RSACryptoServiceProvider and openSSL

I've used the .NET class RSACryptoServiceProvider to get a keypair: using (RSACryptoServiceProvider rsa = new RSACryptoServiceProvider()) { File.WriteAllText ("PublicKeyOnly.xml", rsa.ToXmlString ...
5
votes
4answers
11k views

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 question : is it a good idea implement a single class ...
4
votes
4answers
2k views

Web.config Encryption Error

Having problem with encryption. I gave full permissions to all users to RSA folders. I did C:\>aspnet_regiis -pe "appSettings" -location "web.config" -prov "RsaProtectedCo nfigurationProvider" ...
4
votes
1answer
4k views

Decrypting with private key from .pem file in c# with .NET crypto library

I know this is a similar question to this one but before I head down the Bouncey Castle route, does anyone know if its possible to load an RSA KeyPair from a .pem file (-----BEGIN RSA PRIVATE ...
4
votes
2answers
759 views

Why does RSACryptoServiceProvider.VerifyHash need an LDAP check?

I recently encountered an odd problem with RSACryptoServiceProvider.VerifyHash. I have a web application using it for decryption. When users running the web service were doing so over our VPN it ...
3
votes
1answer
71 views

Why is RSACryptoServiceProvider.Encrypt() output not stable?

Until today I was living under the impression that RSA encryption using RSA is deterministic. After all, how should signature verification work if it wasn't? To my big suprise, .NETs ...
3
votes
1answer
2k views

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 PC and moved all my project files across. When I try and run the project, I get this error message: ...
3
votes
1answer
724 views

RSA Encryption C#

I have a class which in C# doing RSA encryption where I used the default RSACryptoServiceProvider class. But I have a concern regarding the following; If you have the word hello for an input and the ...
3
votes
4answers
1k views

How to encrypt Amazon CloudFront signature for private content access using canned policy

Has anyone using .net actually worked out how to successfully sign a signature to use with CloudFront private content? After a couple of days of attempts all I can get is Access Denied. I have been ...
2
votes
2answers
70 views

Microsoft RSA CSP key size

From what I can see, Microsoft's RSA CSP always generates identical bitlength pseudo prime numbers. So if the key size is 1024, the P and Q values seem to be (?) guaranteed to be 512 bits each? Does ...
2
votes
2answers
484 views

C# RSACryptoServiceProvider ToXmlString()/FromXmlString()

EDIT2: Seems Convert.FromBase64String is my savior. Does anyone know if a comma would every be in such a string? I'm doing basic csv parsing. If it is I can always use quotes (but can quotes ever be ...
2
votes
2answers
554 views

Best way to initaite RSACryptoServiceProvider from x509Certificate2?

What is the best way to initate a new RSACryptoServiceProvider object from an X509Certificate2 I pulled out of a key store? The certificate is associated with both public (for encryption) and private ...
2
votes
1answer
310 views

Perl & .NET RSA working together? Encrypting in .NET from Perl public key? Loading private key from Perl?

I've got an application that is going to be taking a public key from a 3rd party. The public key is generated in Perl using Crypt::RSA::Key. Using the BigInteger class, I'm able to load this key and ...
2
votes
3answers
674 views

CryptographicException intermittently occurs when encrypting/decrypting with RSA

I'm trying to encrypt and decrypt data using RSA in C#. I have the following MSTest unit test: const string rawPassword = "mypass"; // Encrypt string publicKey, privateKey; string encryptedPassword ...
2
votes
1answer
185 views

How do I manually Dispose RSACryptoServiceProvider?

I have read on MSDN(see Important note) that RSACryptoServiceProvider must be disposed. They give the example: using (RSACryptoServiceProvider RSA = new RSACryptoServiceProvider()) Now I'm trying ...
2
votes
3answers
2k views

RSA Encryption public key not returned from container?

I feel like what I am trying to do is very simple. But for some reason it doesn't want to work: Here is a complete code snippet to test what I am trying to do: using System; using System.Xml; using ...
1
vote
1answer
92 views

C# - Use a Third Parties Public Key To Encrypt Data Sent to Third Party

I have been given a task to encrypt data that will be stored in our database and sent to one of our customers. I figured the best way to do this is to use asymetric encryption so that once we have ...
1
vote
2answers
114 views

How can I load client certificates from personal store using ASP.NET?

How can I load client certificates from personal store using ASP.NET? If it is possible, can I a crypt data with it? For that I created an application in ASP.NET 2.0 that retrieves all ...
1
vote
2answers
76 views

Strong name export from a key container

We do have a build server, which contains our private key, used to sign the delay-signed assemblies, in a key container. We are now creating another build server and no one seems to know, where the ...
1
vote
2answers
263 views

Using RSACryptoServiceProvider in C# to encrypt/decrypt an excel file?

How can I use private/public keys for encryption/decryption of an an excel file in C#.NET? The article RSA Encryption in C# describes a way of doing this encryption, but this example only works for ...
1
vote
1answer
538 views

Verifying a Digital Signature produced by C# on an Android Device

I'm writing an Android application that would like to verify that a string produced by a C# program is authentic (i.e. produced by another application that I've written). To do that, I'm signing the ...
1
vote
1answer
127 views

Can another application access a private key stored in a key container using RSACryptoServiceProvider?

I am using RSACryptoServiceProvider to generate public/private key pair and using cspParameters object to store it in a key container. My problem is that after i store the private key in a key ...
1
vote
3answers
642 views

High performance RSA implementation for C# or C

I have an webservice that performs many RSA-signature operations. I use the CryptograhyProvider from .net. This uses the unmanaged CyptoAPI from Windows. I often have this error: ...
1
vote
1answer
424 views

Attempt to set permissions on a KeyContainer in C# is having no effect

I'm using the following code in an attempt to programatically allow the NetworkService account to have access to a key: var RSA = new RSACryptoServiceProvider( new CspParameters() { ...
1
vote
1answer
1k views

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/private key pair. The following code creates a public/private pair and extracts the public ...
1
vote
2answers
1k views

.Net Simple RSA encryption

I'm trying to encrypt something simple, like int or long. Simplest way I found looks like: int num = 2; RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(); byte[] numBytes = ...
0
votes
0answers
31 views

Using preexisting private key in RSACryptoServiceProvider

I'm using RSACryptoServiceProvider and am trying to import an already generated privatekey/publickey RSA-KeyPair. The key-Attributes get converted to raw byte-Arrays, so I have the ...
0
votes
2answers
57 views

RSACryptoServiceProvider doesn't produce consistent output

I need to encrypt some text with RSA, and then recover it later using the private key. My problem is that RSACryptoServiceProvider.Encrypt() outputs a different value every time, even when using the ...
0
votes
0answers
99 views

.NET RSA data signing, are my assumptions correct?

I've been digging into the .NET System.Security.Cryptography namespace, specifically the RSACryptoServiceProvider class. It has two methods using in signing data, SignHash() and VerifyHash() and I ...
0
votes
1answer
118 views

how to access private key from eToken with jsp

It's my first time to here, so please forgive me at first time if I make mistake. I am new to RSA(Cryptography), My requirement is, accessing private key from eToken for decryption and store decrypted ...
0
votes
1answer
47 views

RSACryptoServiceProvider - Value cannot be null - rgb

My DNN module encrypts some data using my public key and presents it to the user. The user submits this data to me for processing. I decrypt the data with my private key and use it. I use the .Net ...
0
votes
1answer
93 views

How to store machine keys for the RSACryptoServiceProvider in Windows Server2008 R2?

For other Servers it is working with the following directory instead in Windows Server 2008 R2: C:\Documents and Settings\All Users\Application Data\Microsoft\Crypto\RSA\MachineKeys but in Windows ...
0
votes
0answers
67 views

RSACryptoServiceProvider error

I encountered this error when I deployed the application in the production server, but in my local machine it is much working well.The error generates from this line (rsa.FromXmlString(xmlKey); in ...
0
votes
0answers
129 views

Unable to sign an xml using x509Certificate stored in a smartcard

I've got an x509Certificate stored in a smartcard... all I want is to sign an Xml using this certificate... By now i've got something like this: var ss = new SecureString(); ...
0
votes
2answers
292 views

how to decrypt an encrypted text using RSACryptoServiceProvider?

I have encrypted a text using RSACryptoServiceProvider. I exported the public and private key. Obviously I just want to expose the public key inside the decoder application, so I have written a code ...
0
votes
1answer
135 views

C#: RSACryptoServiceProvider Encrypt and VerifyData?

here are my methods for encrypting and decrypting data using RSA: private RSACryptoServiceProvider _RSACSP { get; set; } public byte[] Encrypt(byte[] value, bool doOAEPPadding) { try { ...
0
votes
1answer
385 views

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 the private key and public key from it i got the link ...
0
votes
1answer
724 views

“Bad Data” when decrypting using RSACryptoProvider from string encrypted in PHP

I am trying to decrypt a string in C# that was encrypted in PHP using RSA, and for the life of me, I can't get it right. I have condensed the problem to two sample test apps in .NET and PHP: In C#: ...
0
votes
3answers
414 views

Object already exists in RSACryptoServiceProvider

I copied the source code from one application to another, both running on the same machine. I am also using the same string for containerName below in both applications. What is preventing my new ...
0
votes
1answer
503 views

Generate random RSA keys with RSACryptoServiceProvider

How do I generate random RSA public and private keys (RSAParameters) using RSACryptoServiceProvider class? Each time I create a new instance of RSACryptoServiceProvider, I end up exporting the same ...
0
votes
1answer
239 views

How to specify public key in RSACryptoServiceProvider .NET class

I need to sign an xml-doc with digital signature. I know that there is a way to do this in .NET but i cannot understand how to specify my own puplic key in RSACryptoServiceProvider. I need for the ...
0
votes
2answers
191 views

RSACryptoServiceProvider KeyContainer appears to time out?

I am using the RSACryptoServiceProvider like this... private byte[] RSAEncrypt(byte[] DataToEncrypt, string ContainerName, bool DoOAEPPadding) { try { byte[] ...
0
votes
1answer
439 views

encrypt/decrypt file by RSACryptoServiceProvider

I need to encrypt/decrypt files (type pdf,txt,doc) by using RSA algorithm in c# I import keys from XMl file I use this method public byte[] DecryptData(byte[] encrypted) { int nBytes = ...
0
votes
2answers
1k views

RSA_sign and RSACryptoProvider.VerifySignature

I'm trying to get up to speed on how to get some code that uses OpenSSL for cryptography, to play nice with another program that I'm writing in C#, using the Microsoft cryptography providers available ...
0
votes
1answer
318 views

RSA KEY Encryption/Decryption Problem

I tried C:\dev>aspnet_regiis -pc "NetFrameworkConfigurationKey" -exp Creating RSA Key container... The RSA key container could not be opened. Failed! and C:\dev>aspnet_regiis -pa ...
0
votes
2answers
489 views

Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair?

Using the Windows CryptoAPI, is there any way to specify which public exponent to use when generating a new key-pair (ie. 3 instead of 65537)? As a bonus question: how would I access this ...
0
votes
1answer
990 views

C# RSA encrypt/decrypt throws exception

I'm trying to set up a simple server side RSA encryption of a small chunk of info which is to be decrypted on the client side. Just as a proof of concept I wrote a few lines to ensure that the public ...
0
votes
1answer
206 views

Can the data at UseMachineKeyStore be backed up and recovered?

I have the following code: const int PROVIDER_RSA_FULL = 1; const string CONTAINER_NAME = "Example"; CspParameters cspParams; cspParams = new CspParameters(PROVIDER_RSA_FULL); ...
0
votes
2answers
1k views

“Bad Key.” exception when decrypting with RSACryptoServiceProvider (C#.NET)

I am trying to decrypt data that has been encrypted previously in RSA (don't worry, I'm supposed to be able to, I have the keys. Nothing illegal :). However, I get a "Bad Key." error at the ...
0
votes
1answer
784 views

RSA Key Store Permissions

Since yesterday I haven't been able to generate strong name keys using sn.exe or through Visual Studio which also uses sn.exe. When attempting to generate a key file the following cimmand is executed ...

1 2