Blum–Goldwasser cryptosystem

1

The Blum–Goldwasser (BG) cryptosystem is an asymmetric key encryption algorithm proposed by Manuel Blum and Shafi Goldwasser in 1984. Blum–Goldwasser is a probabilistic, semantically secure cryptosystem with a constant-size ciphertext expansion. The encryption algorithm implements an XOR-based stream cipher using the Blum-Blum-Shub (BBS) pseudo-random number generator to generate the keystream. Decryption is accomplished by manipulating the final state of the BBS generator using the private key, in order to find the initial seed and reconstruct the keystream. The BG cryptosystem is semantically secure based on the assumed intractability of integer factorization; specifically, factoring a composite value N = pq where p, q are large primes. BG has multiple advantages over earlier probabilistic encryption schemes such as the Goldwasser–Micali cryptosystem. First, its semantic security reduces solely to integer factorization, without requiring any additional assumptions (e.g., hardness of the quadratic residuosity problem or the RSA problem). Secondly, BG is efficient in terms of storage, inducing a constant-size ciphertext expansion regardless of message length. BG is also relatively efficient in terms of computation, and fares well even in comparison with cryptosystems such as RSA (depending on message length and exponent choices). However, BG is highly vulnerable to adaptive chosen ciphertext attacks (see below). Because encryption is performed using a probabilistic algorithm, a given plaintext may produce very different ciphertexts each time it is encrypted. This has significant advantages, as it prevents an adversary from recognizing intercepted messages by comparing them to a dictionary of known ciphertexts.

Operation

The Blum–Goldwasser cryptosystem consists of three algorithms: a probabilistic key generation algorithm which produces a public and a private key, a probabilistic encryption algorithm, and a deterministic decryption algorithm.

Key generation

The public and private keys are generated as follows: Then n is the public key and the pair (p,q) is the private key.

Encryption

A message M is encrypted with the public key n as follows: The encryption of the message M is then all the c_i values plus the final x_{t+1} value:.

Decryption

An encrypted message can be decrypted with the private key (p,q) as follows:

Example

Let p = 19 and q = 7. Then n = 133 and. To encrypt the six-bit message 101001_2, we break it into two 3-bit blocks, so t = 2. We select a random r = 36 and compute. Now we compute the c_i values as follows: So the encryption is. To decrypt, we compute It can be seen that x_0 has the same value as in the encryption algorithm. Decryption therefore proceeds the same as encryption:

Proof of correctness

We must show that the value x_0 computed in step 6 of the decryption algorithm is equal to the value computed in step 4 of the encryption algorithm. In the encryption algorithm, by construction x_0 is a quadratic residue modulo n. It is therefore also a quadratic residue modulo p, as are all the other x_i values obtained from it by squaring. Therefore, by Euler's criterion,. Then Similarly, Raising the first equation to the power (p+1)/4 we get Repeating this t times, we have And by a similar argument we can show that. Finally, since, we can multiply by x_0 and get from which, modulo both p and q, and therefore.

Security and efficiency

The Blum–Goldwasser scheme is semantically-secure based on the hardness of predicting the keystream bits given only the final BBS state y and the public key N. However, ciphertexts of the form {\vec c}, y are vulnerable to an adaptive chosen ciphertext attack in which the adversary requests the decryption m^{\prime} of a chosen ciphertext {\vec a}, y. The decryption m of the original ciphertext can be computed as. Depending on plaintext size, BG may be more or less computationally expensive than RSA. Because most RSA deployments use a fixed encryption exponent optimized to minimize encryption time, RSA encryption will typically outperform BG for all but the shortest messages. However, as the RSA decryption exponent is randomly distributed, modular exponentiation may require a comparable number of squarings/multiplications to BG decryption for a ciphertext of the same length. BG has the advantage of scaling more efficiently to longer ciphertexts, where RSA requires multiple separate encryptions. In these cases, BG may be significantly more efficient.

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.

Edit article