Contents
Merkle–Hellman knapsack cryptosystem
The Merkle–Hellman knapsack cryptosystem was one of the earliest public key cryptosystems. It was published by Ralph Merkle and Martin Hellman in 1978. A polynomial time attack was published by Adi Shamir in 1984. As a result, the cryptosystem is now considered insecure.
History
The concept of public key cryptography was introduced by Whitfield Diffie and Martin Hellman in 1976. At that time they proposed the general concept of a "trap-door one-way function", a function whose inverse is computationally infeasible to calculate without some secret "trap-door information"; but they had not yet found a practical example of such a function. Several specific public-key cryptosystems were then proposed by other researchers over the next few years, such as RSA in 1977 and Merkle-Hellman in 1978.
Description
Merkle–Hellman is a public key cryptosystem, meaning that two keys are used, a public key for encryption and a private key for decryption. It is based on the subset sum problem (a special case of the knapsack problem). The problem is as follows: given a set of integers A and an integer c, find a subset of A which sums to c. In general, this problem is known to be NP-complete. However, if A is superincreasing, meaning that each element of the set is greater than the sum of all the numbers in the set lesser than it, the problem is "easy" and solvable in polynomial time with a simple greedy algorithm. In Merkle–Hellman, decrypting a message requires solving an apparently "hard" knapsack problem. The private key contains a superincreasing list of numbers W, and the public key contains a non-superincreasing list of numbers B, which is actually a "disguised" version of W. The private key also contains some "trapdoor" information that can be used to transform a hard knapsack problem using B into an easy knapsack problem using W. Unlike some other public key cryptosystems such as RSA, the two keys in Merkle-Hellman are not interchangeable; the private key cannot be used for encryption. Thus Merkle-Hellman is not directly usable for authentication by cryptographic signing, although Shamir published a variant that can be used for signing.
Key generation
- Choose a block size n. Integers up to n bits in length can be encrypted with this key.
- Choose a random superincreasing sequence of n positive integers
- Choose a random integer q such that
- Choose a random integer r such that (that is, r and q are coprime).
- Calculate the sequence The public key is B and the private key is (W,q,r).
Encryption
Let m be an n-bit message consisting of bits, with m_1 the highest order bit. Select each b_i for which m_i is nonzero, and add them together. Equivalently, calculate The ciphertext is c.
Decryption
To decrypt a ciphertext c, we must find the subset of B which sums to c. We do this by transforming the problem into one of finding a subset of W. That problem can be solved in polynomial time since W is superincreasing.
- Calculate the modular inverse of r modulo q using the Extended Euclidean algorithm. The inverse will exist since r is coprime to q.
- Calculate
- Solve the subset sum problem for c' using the superincreasing sequence W, by the simple greedy algorithm described below. Let be the resulting list of indexes of the elements of W which sum to c'. (That is, .)
- Construct the message m with a 1 in each x_i bit position and a 0 in all other bit positions:
Solving the subset sum problem
This simple greedy algorithm finds the subset of a superincreasing sequence W which sums to c', in polynomial time:
Example
Key generation
Create a key to encrypt 8-bit numbers by creating a random superincreasing sequence of 8 values: The sum of these is 706, so select a larger value for q: Choose r to be coprime to q: Construct the public key B by multiplying each element in W by r modulo q: Hence.
Encryption
Let the 8-bit message be. We multiply each bit by the corresponding number in B and add the results: 0 * 295 + 1 * 592 + 1 * 301 + 0 * 14 + 0 * 28 + 0 * 353 + 0 * 120 + 1 * 236 = 1129 The ciphertext c is 1129.
Decryption
To decrypt 1129, first use the Extended Euclidean Algorithm to find the modular inverse of r mod q: Compute. Use the greedy algorithm to decompose 372 into a sum of w_i values: Thus, and the list of indexes is X = (8,3,2). The message can now be computed as
Cryptanalysis
In 1984 Adi Shamir published an attack on the Merkle-Hellman cryptosystem which can decrypt encrypted messages in polynomial time without using the private key. The attack analyzes the public key and searches for a pair of numbers u and m such that is a superincreasing sequence. The (u,m) pair found by the attack may not be equal to (r',q) in the private key, but like that pair it can be used to transform a hard knapsack problem using B into an easy problem using a superincreasing sequence. The attack operates solely on the public key; no access to encrypted messages is necessary. Shamir's attack on the Merkle-Hellman cryptosystem works in polynomial time even if the numbers in the public key are randomly shuffled, a step which is usually not included in the description of the cryptosystem, but can be helpful against some more primitive attacks.
This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.
Wikipedia® is a registered trademark of the
Wikimedia Foundation, Inc.
Bliptext is not
affiliated with or endorsed by Wikipedia or the
Wikimedia Foundation.