BB84 Quantum Key Distribution

From Quantum Protocol Zoo
Revision as of 21:29, 11 November 2018 by Shraddha (talk | contribs) (→‎Properties)
Jump to navigation Jump to search

Functionality Description

The BB84 protocol implements the task of Quantum Key Distribution (QKD). The protocol enables two parties, Alice and Bob, to establish a classical secret key by preparing and measuring qubits. The output of the protocol is a classical secret key which is completely unknown to any third party, namely an eavesdropper.

Tags: Two Party, Quantum Enhanced Classical Functionality, Specific Task, Device Independent QKD, Six State QKD

Requirements

  • Network Stage: Prepare and Measure
  • Relevant Network Parameters: (see Prepare and Measure)
  • Benchmark values:
    • Minimum number of rounds ranging from to depending on the network parameters, for commonly used secure parameters.
    • , taking a depolarizing model as benchmark. Parameters satisfying are sufficient.
  • requires Authenticated classical channel, Random number generator.

Example:

Outline


The protocol shares a classical between two parties, sender (Alice) and receiver (Bob). The BB84 quantum key distribution protocol is composed by the following steps:

  • Distribution: This step involves preparation, exchange and measurement of quantum states. For each round of the distribution phase, Sender randomly chooses a basis (a pair of orthogonal states) out of two available bases (X and Z). She then randomly chooses one of the two states and prepares the corresponding quantum state in the chosen basis. She sends the prepared state to Bob. Upon receiving the state, Receiver announces that he received the state and randomly chooses to measure in the either of the two available bases (X or Z). The outcomes of the measurements give Bob a string of classical bits. The two parties repeat the above procedure times so that at the end of the distribution phase each of them holds an -bit string.
  • Sifting: Both parties publicly announce their choices of basis and compare them. They discard the rounds in which Receiver measured in a different basis than the one prepared by Sender.
  • Parameter estimation: Both parties use a fraction of the remaining rounds (in which both measured in the same basis) in order to estimate the quantum bit error rate (QBER).
  • Error correction: Both together, choose a classical error correcting code and publicly communicate in order to correct their string of bits. At the end of this phase both parties hold the same bit-string.
  • Privacy amplification: Both use an extractor on the previously established string to generate a smaller but completely secret string of bits, which is the final key.

Properties


  • Notations Used:
    • number of total rounds of the protocol.
    • size of the secret key.
    • bits of input of Sender and Receiver, respectively, that define the measurement basis.
    • bits of output of Sender and Receiver, respectively.
    • final key of Sender and Receiver, respectively.
    • is the quantum bit error rate QBER in the basis.
    • is the quantum bit error rate QBER in the basis estimated prior to the protocol.
    • is the Hadamard gate. .
    • is the probability that Alice (Bob) prepares (measures) a qubit in the basis.
    • , are the error probabilities of the error correction protocol.
    • is the error probability of the privacy amplification protocol.
    • is the error probability of the parameter estimation.
  • The protocol-
    • is Information-theoretically secure
    • requires synchronous network, authenticated public classical channel, secure from coherent attacks
    • implements -QKD, which means that it generates an -correct, -secret key of length in rounds. The security parameters of this protocol are give by

and the amount of key that is generated is given by



where and is the binary entropy function.

In the above equation for key length, the parameters and are error probabilities of the classical error correction subroutine. At the end of the error correction step, if the protocol does not abort, then Alice and Bob share equal strings of bits with probability at least . The parameter is related with the completeness of the error correction subroutine, namely that for an honest implementation, the error correction protocol aborts with probability at most . The parameter is the error probability of the privacy amplification subroutine and is the error probability of the parameter estimation subroutine used to estimate . (See Quantum Key Distribution for the precise security definition)

Pseudo Code


  • Input:
  • Output:

Stage 1 Distribution and measurement

  1. For i=1,2,...,n
    1. Sender chooses random bits and such that
    2. Sender prepares and sends it to Bob
    3. Receiver announces receiving a state
    4. Receiver chooses bit such that
    5. Receiver measures in basis with outcome
  • At this stage Sender holds strings and Receiver , all of length

Stage 2 Sifting

  1. Alice and Bob publicly announce
  2. For i=1,2,....,n
    1. If
      1. append</math>(A_i)</math>
      2. append
      3. append
      4. append
  • Now Sender holds strings and Receiver , all of length

Stage 3 Parameter estimation

  1. For
    1. size = 0
    2. If{
      1. Sender and Receiver publicly announce
      2. Sender and Receiver compute , where is the Kronecker delta
    3. size += 1\;
  • Both Sender and Receiver, each, compute

Stage 4 Error correction

  • is an error correction subroutine determined by the previously estimated value of and with error parameters and
  1. Both Sender and Receiver run .
  2. Receiver obtains

Stage 5 Privacy amplification

  • is a privacy amplification subroutine determined by the size , computed from Eq.(3), and with secrecy parameter
  1. Sender and Receiver run $PA(A_1^{n'},\tilde{B}_1^{n'})$ and obtain secret keys $K_A, K_B$\;

Relevant Papers