RSA algorithm
RSA (Rivest–Shamir–Adleman) is an algorithm used by modern computers to encrypt and decrypt messages. It is an asymmetric cryptographic algorithm. Asymmetric means that there are two different keys. This is also called public key cryptography, because one of the keys can be given to anyone. The other key must be kept private. The algorithm is based on the fact that finding the factors of a large composite number is difficult: when the integers are prime numbers, the problem is called prime factorization. It is also a key pair (public and private key) generator.
Operation
RSA involves a public key and private key. The public key can be known to everyone; it is used to encrypt messages. Messages encrypted using the public key can only be decrypted with the private key. The keys for the RSA algorithm are generated the following way:
- Choose two different large random prime numbers and
- Calculate
- is the modulus for the public key and the private keys
- Calculate the totient: .
- Choose an integer such that 1 < < , and is co-prime to i.e.: and share no factors other than 1; gcd(,) = 1.
- is released as the public key exponent
- Compute to satisfy the congruence relation i.e.: for some integer . (Simply to say : Calculate to be integer)
- is kept as the private key exponent
Notes on the above steps:
- Step 1: Numbers can be probabilistically tested for primality.
- Step 3: changed in Template:Ill v2.0 to instead of .
- Step 4: A popular choice for the public exponents is = 216 + 1 = 65537. Some applications choose smaller values such as = 3, 5, or 35 instead. This is done to make encryption and signature verification faster on small devices like smart cards but small public exponents may lead to greater security risks.
- Steps 4 and 5 can be performed with the Template:Ill; see modular arithmetic.
The public key is made of the modulus and the public (or encryption) exponent .
The private key is made of p,q and the private (or decryption) exponent which must be kept secret.
- For efficiency a different form of the private key can be stored:
- and : the primes from the key generation,
- and : often called dmp1 and dmq1.
- : often called iqmp
- All parts of the private key must be kept secret in this form. and are sensitive since they are the factors of , and allow computation of given . If and are not stored in this form of the private key then they are securely deleted along with other intermediate values from key generation.
- Although this form allows faster decryption and signing by using the Chinese Remainder Theorem (CRT) it is considerably less secure since it enables Template:Ill. This is a particular problem if implemented on smart cards, which benefit most from the improved efficiency. (Start with and let the card decrypt that. So it computes or whose results give some value . Now, induce an error in one of the computations. Then will reveal or .)
Encrypting message
Alice gives her public key ( & ) to Bob and keeps her private key secret. Bob wants to send message M to Alice.
First he turns M into a number smaller than by using an agreed-upon reversible protocol known as a padding scheme. He then computes the ciphertext corresponding to:
This can be done quickly using the method of exponentiation by squaring. Bob then sends to Alice.
Decrypting message
Alice can recover from by using her private key in the following procedure:
Given , she can recover the original distinct prime numbers, applying the Chinese remainder theorem to these two congruences yields
- .
Thus,
- .
A working example
Here is an example of RSA encryption and decryption. The parameters used here are artificially small, but you can also use OpenSSL to generate and examine a real keypair.
- Choose two random prime numbers.
- : and Compute
- :
- Compute the totient
- :
- Choose coprime to 3120
- :
- Choose to satisfy
- :
- :.
The public key is (, ). For a padded message the encryption function becomes:
The private key is (, ). The decryption function becomes:
For example, to encrypt , we calculate
To decrypt , we calculate
Both of these calculations can be computed efficiently using the square-and-multiply algorithm for Template:Ill.
Deriving RSA equation from Euler's theorem
RSA can easily be derived using Euler's theorem and Euler's totient function.
Starting with Euler's theorem,
Using Modular arithmetic, the equation can be re-written as
Multiply both sides by m
Euler's totient function has the property for some values p and q,
Therefore, the equation can be rewritten as
Furthermore, for all integers k, the following relation still holds:
The value d is derived from the following equation, where e is some large prime number and for some k such that d is an integer:
And by exponent rules, the following statement holds:
As the e's will cancel out. So when encrypting the ciphertext m,
The original value of m can be deduced from c by raising c to d.
The equation shows the equivalence holds.and the progress
Padding schemes
When used in practice, RSA must be combined with some form of padding scheme, so that no values of M result in insecure ciphertexts. RSA used without padding may have some problems:
- The values m = 0 or m = 1 always produce ciphertexts equal to 0 or 1 respectively, due to the properties of exponentiation.
- When encrypting with small encryption exponents (e.g., e = 3) and small values of the m, the (non-modular) result of may be strictly less than the modulus n. In this case, ciphertexts may be easily decrypted by taking the eth root of the ciphertext with no regard to the modulus.
- RSA encryption is a deterministic encryption algorithm. It has no random component. Therefore, an attacker can successfully launch a chosen plaintext attack against the cryptosystem. They can make a dictionary by encrypting likely plaintexts under the public key, and storing the resulting ciphertexts. The attacker can then observe the communication channel. As soon as they see ciphertexts that match the ones in their dictionary, the attackers can then use this dictionary in order to learn the content of the message.
In practice, the first two problems can arise when short ASCII messages are sent. In such messages, m might be the concatenation of one or more ASCII-encoded character(s). A message consisting of a single ASCII NUL
character (whose numeric value is 0) would be encoded as m = 0, which produces a ciphertext of 0 no matter which values of e and N are used. Likewise, a single ASCII SOH
(whose numeric value is 1) would always produce a ciphertext of 1. For systems which conventionally use small values of e, such as 3, all single character ASCII messages encoded using this scheme would be insecure, since the largest m would have a value of 255, and 2553 is less than any reasonable modulus. Such plaintexts could be recovered by simply taking the cube root of the ciphertext.
To avoid these problems, practical RSA implementations typically embed some form of structured, randomized padding into the value m before encrypting it. This padding ensures that m does not fall into the range of insecure plaintexts, and that a given message, once padded, will encrypt to one of a large number of different possible ciphertexts. The latter property can increase the cost of a dictionary attack beyond the capabilities of a reasonable attacker.
Standards such as PKCS have been carefully designed to securely pad messages prior to RSA encryption. Because these schemes pad the plaintext m with some number of additional bits, the size of the un-padded message M must be somewhat smaller. RSA padding schemes must be carefully designed so as to prevent sophisticated attacks. This may be made easier by a predictable message structure. Early versions of the PKCS standard used Template:Broken wikt link constructions, which were later found vulnerable to a practical adaptive chosen ciphertext attack. Modern constructions use secure techniques such as Optimal Asymmetric Encryption Padding (OAEP) to protect messages while preventing these attacks. The PKCS standard also has processing schemes designed to provide additional security for RSA signatures, e.g., the Probabilistic Signature Scheme for RSA (RSA-PSS).
Signing messages
Suppose Alice uses Bob's public key to send him an encrypted message. In the message, she can claim to be Alice but Bob has no way of verifying that the message was actually from Alice since anyone can use Bob's public key to send him encrypted messages. So, in order to verify the origin of a message, RSA can also be used to sign a message.
Suppose Alice wishes to send a signed message to Bob. She produces a hash value of the message, raises it to the power of d mod n (just like when decrypting a message), and attaches it as a "signature" to the message. When Bob receives the signed message, he raises the signature to the power of e mod n (just like encrypting a message), and compares the resulting hash value with the message's actual hash value. If the two agree, he knows that the author of the message was in possession of Alice's secret key, and that the message has not been tampered with since.
Note that secure padding schemes such as RSA-PSS are as essential for the security of message signing as they are for message encryption, and that the same key should never be used for both encryption and signing purposes.
References
Other websites
- The Original RSA Patent as filed with the U.S. Patent Office by Rivest; Ronald L. (Belmont, MA), Shamir; Adi (Cambridge, MA), Adleman; Leonard M. (Arlington, MA), December 14, 1977, Template:US patent.
- PKCS #1: RSA Cryptography Standard (RSA Laboratories website)
- The PKCS #1 standard "provides recommendations for the implementation of public-key cryptography based on the RSA algorithm, covering the following aspects: cryptographic primitives; encryption schemes; signature schemes with appendix; ASN.1 syntax for representing keys and for identifying the schemes".
- Template:YouTube
- Thorough walk through of RSA
- Prime Number Hide-And-Seek: How the RSA Cipher Works
- Onur Aciicmez, Cetin Kaya Koc, Jean-Pierre Seifert: On the Power of Simple Branch Prediction Analysis
- A New Vulnerability In RSA Cryptography, CAcert NEWS Blog
- Example of an RSA implementation with PKCS#1 padding (GPL source code)
- Kocher's article about timing attacks
- An animated explanation of RSA with its mathematical background by CrypTool
- Hacking Secret Ciphers with Python, Chapter 24, Public Key Cryptography and the RSA Cipher
- Template:Cite web
- How RSA Key used for Encryption in real world