Tagged Questions
The RSA tag is an acronym for the Rivest-Shamir-Adleman public key algorithm. This algorithm is a core component of most the security protocols used on the Internet, including the SSL/TLS protocol suite. RSA is used for 1) key transport and 2) digital signatures, sometimes one or the other and sometime both depending on the protocol. RSA may also describe Rational Software Architect, a software development suite from IBM Corp.
52
votes
1answer
1k views
Blackberry smartcard reader example
I am writing an app for BlackBerry that utilizes a BlackBerry smartcard reader. There is not much documentation on the subject, so I'd really like if someone could give me starting examples.
...
17
votes
5answers
5k views
How do you verify an RSA SHA1 signature in Python?
I've got a string, a signature, and a public key, and I want to verify the signature on the string. The key looks like this:
-----BEGIN PUBLIC KEY-----
...
14
votes
5answers
9k views
how to use RSA to encrypt files (huge data) in C#
I'm new to encryption. I need to implement asymmetric encryption algorithm, which i think it uses private/public key. I started using a sample of RSACryptoServiceProvider. it was ok with small data to ...
13
votes
8answers
521 views
Which attacks are possible concerning my security layer concept?
Despite all the advices to use SSL/https/etc. I decided to implement my own security layer on top of http for my application... The concept works as follows:
User registers -> a new RSA Keypair is ...
13
votes
3answers
1k views
How do I verify a DKIM signature in PHP?
I'll admit I'm not very adept at key verification. What I have is a script that downloads messages from a POP3 server, and I'm attempting to verify the DKIM signatures in PHP. I've already figured out ...
12
votes
3answers
3k views
What is the difference between DSA and RSA?
It appears they are both encryption algorithms that require public and private keys. Why would I pick one versus the other to provide encryption in my client server application?
11
votes
2answers
8k views
What RSA key length should I use for my SSL certificates?
I'm in the process of creating a CSR, and I wonder which is arguably the best length for my RSA key.
Of course, 384 is probably too weak, and 16384 is probably too slow.
Is there a consensus on the ...
10
votes
9answers
446 views
Does sha-1 ever produce collisions for input messages less than 160bits?
I have a 128bit ID that I want to perform a one way hash on, but I don't want to ever get the same digest for an input message. Does anyone know if sha-1, or an alternative, is guaranteed not to ...
10
votes
5answers
5k views
Web.Config encryption using RsaProtectedConfigurationProvider - “Bad Data” error
I am attempting to encrypt connection string values in the Web.Config file for an ASP.NET 2.0 web application, following the procedure described on MSDN. Using the RsaProtectedConfigurationProvider, I ...
9
votes
1answer
125 views
How to encrypt long strings in PHP?
I'm using PHP's openssl_public_encrypt() to encrypt data using RSA. But it won't encrypt data larger than a certain size.
How can I get it to encrypt data of an arbitrary length?
9
votes
2answers
280 views
Use QuickCheck by generating primes
Background
For fun, I'm trying to write a property for quick-check that can test the basic idea behind cryptography with RSA.
Choose two distinct primes, p and q.
Let N = p*q
e is some number ...
9
votes
11answers
1k views
Cracking short RSA keys
I am given the following RSA keys. How can I determine what the values of p and q are?
Public Key: (10142789312725007, 5)
Private Key: (10142789312725007, 8114231289041741)
9
votes
3answers
15k views
C# How to Generate Unique Public and Private Key via RSA
I am building a custom shopping cart where CC numbers and Exp date will be stored in a database until processing (then deleted). I need to encrypt this data (obviously).
I want to use the ...
8
votes
3answers
780 views
RSA and prime-generator algorithms
OK, my understanding of the mathematical workings of RSA may not be as deep as it should, so feel free to slap me over the head if this is stupid:
To generate a private key, we need two random big ...
8
votes
2answers
6k views
How to Load RSA Private Key From File
I am working on a test harness for a SAML 1.1 Assertion Consumer Service. The test must generate a signed SAMLResponse and submit it to the ACS encoded in Base64. The ACS must be able to verify the ...
8
votes
5answers
807 views
Generating REALLY big primes
I'm playing around and trying to write an implementation of RSA. The problem is that I'm stuck on generating the massive prime numbers that are involved in generating a key pair. Could someone point ...
8
votes
5answers
3k views
Having trouble decrypting in C# something encrypted on iPhone using RSA
I've spent two days on this so far and combed through every source at my disposal, so this is the last resort.
I have an X509 certificate whose public key I have stored in the iPhone's keychain ...
8
votes
5answers
15k views
How to read a PEM RSA private key from .NET
I've got an RSA private key in PEM format, is there a straightforward way to read that from .NET and instantiate an RSACryptoServiceProvider to decrypt data encrypted with the corresponding public ...
7
votes
6answers
259 views
Tiny asymmetric cipher implementation to validate download
To allow a small C++ application to update itself at clients connected over the internet, I am in need of a mechanism that validates the download based on a public key. Algorithms such as DSA or RSA ...
7
votes
5answers
4k views
RSA Encrypt / Decrypt Problem in .NET
I'm having a problem with C# encrypting and decrypting using RSA. I have developed a web service that will be sent sensitive financial information and transactions. What I would like to be able to do ...
7
votes
5answers
231 views
Is this scenario secure?
I'm using RSA to encrypt communication between a server and a client.
Lets say we have 2 Asymetric keys, key 1 and key2.
The server has key1 (Private) from the start and the client has the ...
7
votes
8answers
12k views
RSA encryption library for c++
I am developing a win32 application and I would like to use an RSA encryption library. What Library would you recommend?
6
votes
3answers
2k views
RSA Encryption: Difference between Java and Android
I am using RSA to encrypt username and password on Android and decrypt them on server (tomcat 6, java 1.6).
Android Encryption:
PublicKey pubKey = readPublicKeyFromFile(mod, ex);
Cipher ...
6
votes
4answers
261 views
Using <keygen> to get an RSA key for use with javascript?
I need an RSA key pair for my web project and while there are some libraries I think it would be a good idea to rely on the browser (for security and speed) to generate the key for me. Is it possible ...
6
votes
1answer
919 views
C++ OpenSSL export private key
I'm using SSL successfully so far, but have come up against a confusing roadblock. I generate an RSA keypair, and previously was using PEM_write_bio_RSAPrivateKey(...) to export them. However the man ...
6
votes
1answer
754 views
Javascript cryptography library to sign form data in browser
I am looking for a JS crypto lib (similar to, say, OpenSSL's libcrypto) that facilitates digital signing of data in the browser.
I want to sign form form data on the client side using a private key ...
6
votes
4answers
3k views
Crypto library for C++
Duplicate of this one.
I'm about to embark on journey that may change my career by doing a rather big project this time.
I have experience in cryptography as I have taken several courses and written ...
6
votes
4answers
7k views
How do rsa key fobs work?
Could anyone explain to me in simple programmatic terms how these RSA key dongles work? I know Blizzard has them for WoW and paypal as well as some of the trading sites.
Thanks!
6
votes
9answers
4k views
What is the difference between encrypting and signing in asymmetric encryption?
What is the difference between encrypting some data vs signing some data (using RSA)?
Does it simply reverse the role of the public-private keys?
For example, I want to use my private key to ...
6
votes
4answers
5k views
Simple encryption implementation in C
I've used a nice public domain C++ DES implementation before, but now I need some simple, basic, fast cryptography for an embedded system.
It doesn't need to be unbreakable, but it does need to ...
5
votes
5answers
171 views
how to generate large random numbers C
I'm looking for a way to generate large random numbers on the order of 2^64 in C... (100000000 - 999999999), to use in a public key encryption algorithm (as p and q)
I do not want to generate number ...
5
votes
3answers
241 views
Generating RSA keys in PKCS#1 format in Java
When I generate an RSA key pair using the Java API, the public key is encoded in the X.509 format and the private key is encoded in the PKCS#8 format. I'm looking to encode both as PKCS#1. Is this ...
5
votes
1answer
416 views
Cube root modulo P — how do I do this?
I am trying to calculate the cube root of a many-hundred digit number modulo P in Python, and failing miserably.
I found code for the Tonelli-Shanks algorithm which supposedly is simple to modify ...
5
votes
2answers
274 views
RSA encryption algorithm in Java: no BigIntegers
I need to implement RSA algorithm in Java. I've found the best solution using BigIntegers, problem is that I need to work only with ints or longs.
The encrypting is done like this: M[i]^e mod n where ...
5
votes
1answer
140 views
RSA: why does phi(phi(n)) work?
Apparently an alternative method (to just using the extended Euclidean algorithm) of obtaining the exponent for deciphering is to do d = e**(phi(phi(n))-1) mod(phi(n)). Why does this work?
5
votes
2answers
515 views
How to factor RSA modulus given the public and private exponent?
I have a RSA private key with modulus m, public exponent e and private exponent d, but the program I am using needs the modulus's prime factors p and q.
Is it possible to use e and d to get p and q?
5
votes
2answers
485 views
Python OverflowError: cannot fit 'long' into an index=sized integer
Hey guys...I'm a noob here so please don't get mad if I am making a mistake posting this or asking a stupid question.
I want to generate 2 really large prime numbers using this algorithm I found ...
5
votes
3answers
886 views
Generate private RSA key in C#
I have the values for p, q, n and e and would like to calculate the private key d. How can I do this, could someone give me the example C# code? I am using a BigInteger class to represent the values ...
5
votes
1answer
2k views
Formatting RSA keys for OpenSSL in Java
Background
RSA key generation with OpenSSL on Linux using the command,
openssl genrsa -out mykey.pem 1024
created the following:
"-----BEGIN RSA PRIVATE KEY-----
...
5
votes
1answer
916 views
How can I create a Crypt::RSA object from modulus, exponent, and private exponent?
I'm trying to port the following php functionality over to perl:
public function loadKey($mod, $exp, $type = 'public')
{
$rsa = new Crypt_RSA();
$rsa->signatureMode = ...
5
votes
4answers
534 views
How can you encrypt users' data server-side without ruining the experience?
Many users – myself included – would like the security of having everything they do on a web service encrypted. That is, they don't won't any one at the web service to be able to look at their: posts, ...
5
votes
5answers
686 views
RSA: Encrypting message using multiple keys
Is it possible to get additional security by encrypting a message using 2 or more RSA keys?
EDIT: A few clarifications:
The context I am most interested in doing this for is encrypting a randomly ...
5
votes
2answers
1k views
Signing a string with RSA private key on Google App Engine Python SDK
Is there any known way to sign a plain text string with RSA private key on Google App Engine Python SDK?
5
votes
8answers
2k views
Why RSA Decryption process takes longer time than the Encryption process?
I have some idea that it is due to some complex calculation, but i want to know about what exactly happens which takes long time than the corresponding encryption process. Any link to webpage or paper ...
5
votes
1answer
9k views
RSA Encryption-Decryption in iphone
I am developing Iphone application. I have used SecKeyGeneratePair method of Security/Security.h framework. I am getting public & private keys as SecKeyRef objects. Can I access the key or print ...
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 ...
5
votes
16answers
11k views
C++ handling very large integers
I am using the RSA Algorithm for encryption/decryption, and in order to decrypt the files you have to deal with some pretty big values. More specifically, things like
P = C^d % n
= 62^65 % 133
...
4
votes
3answers
50 views
Where to store the sensitive data in vb.net securely
I have a vb.net application that uses my gmail smtp server settings and my password to send me the users feedback through the email, (I don't want to show my email to the users)
The problem is I ...
4
votes
2answers
112 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 ...
4
votes
8answers
117 views
Is it safe enough / possible to use RSA Encryption in this case?
Not a long time ago I discovered RSA Encryption / Decryption and I have some little experience. Currently I'm developing an application in C# which has to send to my server some sensitive information. ...