Boneh–Franklin scheme

From Wikipedia, the free encyclopedia

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 \textstyle G_{1} and \textstyle G_{2}:

For \textstyle G_{1}, let \textstyle p be prime, \textstyle p\equiv 2\mod 3 and consider the elliptic curve \textstyle E:y^{2}=x^{3}+1 over \textstyle {\mathbb  {Z}}/p{\mathbb  {Z}}. Note that this curve is not singular as \textstyle 4a^{3}+27b^{2}=27=3^{3} only equals \textstyle 0 for the case \textstyle p=3 which is excluded by the additional constraint.

Let \textstyle q>3 be a prime factor of \textstyle p+1 (which is the order of \textstyle E) and find a point \textstyle P\in E of order \textstyle q. \textstyle G_{1} is the set of points generated by \textstyle P: \textstyle \left\{nP\|n\in \left\{0,\ldots ,q-1\right\}\right\}

\textstyle G_{2} is the subgroup of order \textstyle q of \textstyle GF\left(p^{2}\right)^{*}. 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 \textstyle G_{1} (with generator \textstyle P) and \textstyle G_{2} as stated above, with the size of \textstyle q depending on security parameter \textstyle k,
  2. the corresponding pairing \textstyle e,
  3. a random private master-key \textstyle K_{m}=s\in {\mathbb  {Z}}_{q}^{*},
  4. a public key \textstyle K_{{pub}}=sP,
  5. a public hash function \textstyle H_{1}:\left\{0,1\right\}^{*}\rightarrow G_{1}^{*},
  6. a public hash function \textstyle H_{2}:G_{2}\rightarrow \left\{0,1\right\}^{n} for some fixed \textstyle n and
  7. the message space and the cipher space \textstyle {\mathcal  {M}}=\left\{0,1\right\}^{n},{\mathcal  {C}}=G_{1}^{*}\times \left\{0,1\right\}^{n}

Extract

To create the public key for \textstyle ID\in \left\{0,1\right\}^{*}, the PKG computes

  1. \textstyle Q_{{ID}}=H_{1}\left(ID\right) and
  2. the private key \textstyle d_{{ID}}=sQ_{{ID}} which is given to the user.

Encrypt

Given \textstyle m\in {\mathcal  {M}}, the ciphertext \textstyle c is obtained as follows:

  1. \textstyle Q_{{ID}}=H_{1}\left(ID\right)\in G_{1}^{*},
  2. choose random \textstyle r\in {\mathbb  {Z}}_{q}^{*},
  3. compute \textstyle g_{{ID}}=e\left(Q_{{ID}},K_{{pub}}\right)\in G_{2} and
  4. set \textstyle c=\left(rP,m\oplus H_{2}\left(g_{{ID}}^{r}\right)\right).

Note that \textstyle K_{{pub}} is the PKG's public key and thus independent of the recipient's ID.

Decrypt

Given \textstyle c=\left(u,v\right)\in {\mathcal  {C}}, the plaintext can be retrieved using the private key:

\textstyle m=v\oplus H_{2}\left(e\left(d_{{ID}},u\right)\right)

Correctness

The primary step in both en- and decryption is to employ the pairing and \textstyle H_{2} 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 \textstyle H_{2}\left(g_{{ID}}^{r}\right), while for decryption, \textstyle H_{2}\left(e\left(d_{{ID}},u\right)\right) is applied. Due to the properties of pairings, it follows that:

{\begin{aligned}H_{2}\left(e\left(d_{{ID}},u\right)\right)&=H_{2}\left(e\left(sQ_{{ID}},rP\right)\right)\\&=H_{2}\left(e\left(Q_{{ID}},P\right)^{{rs}}\right)\\&=H_{2}\left(e\left(Q_{{ID}},sP\right)^{r}\right)\\&=H_{2}\left(e\left(Q_{{ID}},K_{{pub}}\right)^{r}\right)\\&=H_{2}\left(g_{{ID}}^{r}\right)\\\end{aligned}}

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

This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.