Backward differentiation formula

From formulasearchengine
Revision as of 04:38, 25 October 2013 by en>ChrisGualtieri (General Fixes using AWB)
Jump to navigation Jump to search

The Boneh/Franklin scheme is an Identity based encryption system proposed by Dan Boneh and Matthew K. Franklin in 2001.[1] This article refers to the protocol version called BasicIdent. It is an application of pairings (Weil pairing) over elliptic curves and finite fields.

Groups and parameters

As the scheme bases upon pairings, all computations are performed in two groups G1 and G2:

For G1, let p be prime, p2mod3 and consider the elliptic curve E:y2=x3+1 over /p. Note that this curve is not singular as 4a3+27b2=27=33 only equals 0 for the case p=3 which is excluded by the additional constraint.

Let q>3 be a prime factor of p+1 (which is the order of E) and find a point PE of order q. G1 is the set of points generated by P: {nPn{0,,q1}}

G2 is the subgroup of order q of GF(p2)*. We do not need to construct this group explicitly (this is done by the pairing) and thus don't have to find a generator.

Protocol description

Setup

The Private Key Generator (PKG) chooses:

  1. the public groups G1 (with generator P) and G2 as stated above, with the size of q depending on security parameter k,
  2. the corresponding pairing e,
  3. a random private master-key Km=sq*,
  4. a public key Kpub=sP,
  5. a public hash function H1:{0,1}*G1*,
  6. a public hash function H2:G2{0,1}n for some fixed n and
  7. the message space and the cipher space ={0,1}n,𝒞=G1*×{0,1}n

Extract

To create the public key for ID{0,1}*, the PKG computes

  1. QID=H1(ID) and
  2. the private key dID=sQID which is given to the user.

Encrypt

Given m, the ciphertext c is obtained as follows:

  1. QID=H1(ID)G1*,
  2. choose random rq*,
  3. compute gID=e(QID,Kpub)G2 and
  4. set c=(rP,mH2(gIDr)).

Note that Kpub is the PKG's public key and thus independent of the recipient's ID.

Decrypt

Given c=(u,v)𝒞, the plaintext can be retrieved using the private key:

m=vH2(e(dID,u))

Correctness

The primary step in both en- and decryption is to employ the pairing and H2 to generate a mask (like a symmetric key) that is xor'ed with the plaintext. So in order to verify correctness of the protocol, one has to verify that an honest sender and recipient end up with the same values here.

The encrypting entity uses H2(gIDr), while for decryption, H2(e(dID,u)) is applied. Due to the properties of pairings, it follows that:

H2(e(dID,u))=H2(e(sQID,rP))=H2(e(QID,P)rs)=H2(e(QID,sP)r)=H2(e(QID,Kpub)r)=H2(gIDr)

Security

The security of the scheme depends on the hardness of the Bilinear Diffie-Hellman Problem (BDH) for the groups used. It has been proved that in a random-oracle model, the protocol is semantically secure under the BDH assumption.

Improvements

BasicIdent is not chosen ciphertext secure. However, there is a universal transformation method due to Fujisaki and Okamoto that allows for conversion to a scheme having this property called FullIdent.

References

  1. Dan Boneh, Matthew K. Franklin, Identity-Based Encryption from the Weil Pairing Advances in Cryptology - Proceedings of CRYPTO 2001 (2001)

External links