Tagged Questions
0
votes
0answers
15 views
Is there any JIRA OAuth implementation example in .NET?
We are working on a Jira extension platform in .NET, and we want to provide user access to some secure datas (like download attachments).
So we are trying to implement JIRA OAuth Authentication in ...
-6
votes
0answers
36 views
How to encrypt the a string with a public key? [closed]
I want to encrypt the bytes of a string in c# with a modulus and an exponent.
Why is there a different result from RSACryptoServiceProvider in C#
0
votes
1answer
267 views
Public key encryption with RSACryptoServiceProvider
I have been over an article at CodeProject a for a while that explains how to encrypt and decrypt using the RSA provider:
RSA Private Key Encryption
While the old version from 2009 was buggy, the ...
1
vote
1answer
71 views
RSA Encryption causes errors
I'm hoping you can help me with a weird error I've been getting while trying to implement a QueryString encryption module using RSA for my encryption type. My question is 2 fold:
Can you help me ...
1
vote
1answer
291 views
Use PEM encoded RSA private key in .NET
I have a private key which looks like this:
-----BEGIN RSA PRIVATE KEY-----
Some private key data
-----END RSA PRIVA
I need to use this key in my C# project, but I couldn't find any example ...
0
votes
1answer
251 views
Using the RSACryptoServiceProvider to sign a hash from a server and then verifying the hash from client side
Hi there I've been looking all over the internet and I can't quite find a solution to my problem of signing and verifying. First of all I want to make sure I'm on the right track when it comes to ...
1
vote
1answer
132 views
BouncyCastle signature value does not match with dotNET signature value
I have a problem with the "SHA1withRSA" signature using Bouncy Castle on Android: Bouncy Castle signature value does not match with .NET signature value.
I tried to use many algorithms like ...
3
votes
1answer
619 views
How to calculate D for RSA encryption from P,Q and E
I am trying to find D using P,Q and E (Dp, Dq and (p-1mod q) are available too).
According to this answer and this answer and update for this question using following method I should get D.
To test ...
6
votes
1answer
325 views
Mapping RSA Encryption Parameters from CRT (Chinese remainder theorem) to .NET format
I need to implement RSA encryption/decryption using C#
I have a private key with following parameters:
mod n, exponent, p, q, dP, dQ, and (p-1mod q)
Above parameters are explained in Chinese ...
0
votes
2answers
202 views
Initialisting KeyInfo with X509 certificate parameters
This is a question for C# language.
I am having a reference to X509 Certificate in one class A(call it sslCert) i.e i can access the various members associated with the X509 certificate.
Also, i am ...
3
votes
2answers
424 views
Why is RSAParameters Modulus not equal product of P and Q?
The values of P and Q do not match value of the Modulus of the .Net RSAParameters.
According to RSA algorithm and MSDN documentation it should be: P * Q = Modulus
I generated a 512bit RSA keypair and ...
1
vote
1answer
235 views
Java RSA encryption not working when using .NET RSAKeyValue XML string
I have the following RSA XML string from a .NET web service
<RSAKeyValue>
...
2
votes
1answer
178 views
Access RSA key container
I have generated a RSA key using aspnet_regiis.exe and installed it on a target machine. How do I access it using C# code?
I want it of type System.Security.Cryptography.RSA.
I will update the ...
0
votes
0answers
143 views
RSACryptoServiceProvider unique privatekey based on a string
how can i generate an unique private key based on a string ?
i tried the following :
CspParameters cspParams = new CspParameters(1);
cspParams.ProviderName = "Microsoft Strong Cryptographic ...
1
vote
3answers
292 views
RSA key private exponent size
I need to parse a ASN.1 DER encoded RSA 2048 private key to get the different components like modulus, exponent etc. As I gone through the key, some of the components are found to have leading zeros. ...
0
votes
1answer
191 views
How to create PEM files containing RSA private/publickey
What are the standard ways of storing RSA private /public keys in files. How can we create these files.
Once these files are created, how can we read them using standard .NET Framework classes.
...
1
vote
1answer
513 views
RSA Key ( XML Format ) compatible for .Net
How to generate xml based RSA keys ( private ,public ) which should be compatible for .NET environment. I tried phpseclib module in PHP. But it is not compatible for .NET. Please suggest me any way ...
0
votes
2answers
109 views
Asymmetric encryption generating as small output (in bytes) as it is possible?
I have to incorporate rsa encryption in my application.
I will have public and private keys. The problem is I need to store sensitive data on sql ce database on mobile device. I need to encrypt ...
1
vote
2answers
256 views
RSA Encryption, Key storage
I'm writing a .NET application that uses a third party api. What is the best way to store the api credentials? I'm thinking of encrypting them using the RSACryptoServiceProvider, my question though ...
2
votes
1answer
478 views
How do I use a C# generated RSA public key in Android?
I want to ensure message privacy between an Android app and C# ASP.NET server, in a situation where HTTPS can't be assumed to be available.
I want to use RSA to encrypt a symmetric key which is ...
0
votes
1answer
164 views
(En|De)crypt data with static private/public key with RSA
I've seen many examples of how to use RSA in C# with random generated keys, but none with static keys. I need this is because my program client stores the public key (n, e) statically, and the server ...
0
votes
2answers
231 views
RSA of large file using C# [duplicate]
Possible Duplicate:
RSA Encryption, getting bad length
I am trying to encrypt a large string using RSA. .NET's default implementation lets me encrypt easily small strings, but when I pass ...
8
votes
3answers
280 views
.Net: Will my RSA keys still function after August 2012?
I just read this article RSA keys under 1024 bits are blocked, and in my .NET software I make extensive use of 384bit keys. Will my program still be able to generate/store/read keys from the ...
1
vote
1answer
1k views
what is the reason for throwing System.Security.Cryptography.CryptographicException -object already exist
public RSAKeyPair()
{
string keyContainerName="pEncKey"
CspParameters cspp = new CspParameters();
cspp.Flags = CspProviderFlags.UseMachineKeyStore;
...
1
vote
2answers
256 views
Where should I put the public key in a standalone application
I wrote an C# WPF application that signs a license xml file using the standard .Net SignedXml class. I am able to extract the public and private key as xml strings. I can safely tuck away my private ...
1
vote
1answer
648 views
.Net RSA Encryption, Java RSA Decryption [closed]
We have a .Net application that encrypts and decrypts text and store it in the database. I found that the .Net developer have stored the RSA key in the XML format. When they have done with the ...
4
votes
1answer
316 views
Encrypting a private key with BouncyCastle
I'm using the .NET version of BouncyCastle, and I have to save a private RSA key to file, obviously encrypted with a password for security reasons.
What I'm trying right now is this:
Dim rand As New ...
0
votes
1answer
536 views
Encrypting Data with RSA in .NET
I have a DER file with sha1RSA as the Signature Algorithm. I have to encrypt some data using it.
Can anyone tell me how do I load the DER file and use the RSA public key in it to encrypt my data in ...
1
vote
1answer
363 views
.NET STA Com Object from MTA apartment
I'm working on a site (MVC) at the moment, which uses ajax quite heavily to request data from slow responding asynchronous resources.
I have a problem though, every request has to first be ...
2
votes
4answers
455 views
Decrypt PKCS #1 v2.1 cipher from BlackBerry in C#.NET
I have written a BlackBerry app that RSA encrypts a message using PKCS1FormatterEngine. This outputs a ciphered message formatted in PKCS #1 v2.1
Here is a snippet of the message:
...
1
vote
1answer
605 views
RSA - Encryption with negative exponent
Well guys I am trying to encrypt (actually sign) data using Public and Private exponent and modulus, It is in C#.NET and I can't use RSACryptoServiceProvider because it needs also both prime numbers ...
7
votes
4answers
6k views
CryptographicException “Key not valid for use in specified state.” while trying to export RSAParameters of a X509 private key
I am staring at this for quite a while and thanks to the MSDN documentation I cannot really figure out what's going. Basically I am loading a PFX file from the disc into a X509Certificate2 and trying ...
3
votes
4answers
3k views
Encrypting/Decrypting large files (.NET)
I have to encrypt, store and then later decrypt large files. What is the best way of doing that? I heard RSA encryption is expensive and was advised to use RSA to encrypt an AES key and then use the ...
1
vote
0answers
913 views
Create a X509Certificate2 from RSACryptoServiceProvider fails with Cannot find the requested object
Sample code:
CspParameters cspParameters = new CspParameters();
cspParameters.ProviderType = 1; // PROV_RSA_FULL
// Create the crypto service provider, generating a ...
0
votes
1answer
477 views
.net RSACryptoServiceProvider supported hash algorithms
I have 35 byte hash that needs to be signed.
But when i try to sing it with SHA1
var rsa = new RSACryptoServiceProvider();
rsa.SignHash(hash, "SHA1");
i get error "bad hash" (obviously), because ...
2
votes
2answers
381 views
RSACryptoServiceProvider.ExportCspBlob data format
We are exporting a public and private key. The private key is to be consumed by non .net software written in Magic. The developers have questions around the format of the exported key. Is there a ...
2
votes
2answers
394 views
Is there a way to generate large primes in C#, without the use of an external library?
I need to generate large prime numbers for a cryptography project. I noticed that .NET 4.0 has some built-in cryptographic primitive (for example RSA) which use random generated large primes (p,q for ...
1
vote
2answers
2k views
How can I add a private key to X509Certificate2 after I have already added the public key?
My steps are:
Create X509Certificate2 with public key:
X509Certificate2 clientCertificate = new X509Certificate2("public key certificate blob as byte[]");
How do I want to load the private key ...
-2
votes
2answers
315 views
File RSA Decryption
I have a RSA Encrypted file & I want to decrypt it with C# in .NET
I have the foll. parameters of (1024 bit enc) message(cipher text) to decrypt
modulus
public exponent
private exponent
prime p
...
6
votes
1answer
599 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 ...
1
vote
1answer
437 views
Exporting and importing RSA keys
I have created an app that creates a signed XML file.
Microsoft has some straight forward examples it was not that difficult to implement but much is hidden/ encapsulated in the libraries below
...
0
votes
1answer
587 views
Decryption with RSA/ECB/PKCS1Padding
Following tag is a part of SAML response. I have to decrypt following CipherValue.
I pass CipherValue ( string ) to following function but it did not return correct value, what am I doing wrong?
...
4
votes
3answers
6k views
Using an RSA Public Key to decrypt a string that was encrypted using RSA Private Key
I know the main answer I am likely to get is why the hell would you want to do that?!
Unfortunately despite my protests I have to do it, even though I know it makes little sense.
I have functions ...
3
votes
0answers
970 views
How to view permissions for RSA Key Container
I've created an RSA Machine-Store container as a non-administrator, and assigned Full Control to myself, as well as read access to other accounts.
I want to be able to programatically view the ACL ...
2
votes
2answers
262 views
.NET RSA.Create(String algName): What goes in algName?
According to the MSDN documentation for the RSA class there are two RSA.Create() methods. One default implementation and one that takes a string parameter "algName". I haven't been able to find any ...
6
votes
1answer
1k views
RsaProtectedConfigurationProvider vs DataProtectionConfigurationProvider
What are the cases when RsaProtectedConfigurationProvider should be used instead DataProtectionConfigurationProvider and vice-versa?
0
votes
2answers
857 views
How to use key files in RSA Encryption using C#?
I Have given a file named publickey.key. It contains the following Text in it:
脰ゟ؍⨉䢆čā脃脰ʉ膁딀쭡ﶅꐏ눜鎈㨾뵕匆裖奖閈㞉椼ɕ㈭㶕儐臐篙輌䡕㾜㩚a涨节鸝́붼낓蟰୧櫬瑇鋁슏ຐ궿䮹맥ӈ왶䤺ꚢ鑛靡⎞깳㌧꿛葧䋰��綧툻㳥핆ˣăĀ
I have some knowledge about RSA ...
1
vote
1answer
346 views
OpenSSL (cpp) and .net RSA key exchange
I have a problem concerning OpenSSL and dotnet encryption. I would like to transform a RSA public and private key generated by OpenSSL into a dotnet one. This key is then used for further actions. For ...
5
votes
2answers
236 views
Decrypting RSA data in .NET with only a few values
I'm using the Javascript implementation of RSA from this webpage, and I've generated my keypair there. As such, I have p, q, the public exponent, the public modulo, the private exponent and the ...
3
votes
2answers
417 views
'Backwards' public/private key encryption in C#, how would I go about this?
I want my client side application to be able to decrypt some data generated server side, but not be able to encrypt data such that it can decrypt it again.
So the server can encrypt and decrypt, ...

