BB84 Quantum Key Distribution

From Quantum Protocol Zoo
Jump to navigation Jump to search

This example protocol implements the task of Quantum Key Distribution (QKD). The protocol enables two parties 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,Quantum Key Distribution, Device Independent QKD,

Assumptions

  • Network: we assume the existence of an authenticated public classical channel between Alice and Bob.
  • Timing: we assume that the network is synchronous.
  • Adversarial model: coherent attacks.

Outline

The protocol shares a classical key between two parties, Alice and Bob. The BB84 quantum key distribution protocol consists of the following steps:

  • Distribution: This step involves preparation, exchange and measurement of quantum states. For each round of the distribution phase, Alice 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, Bob 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: Alice and Bob publicly announce their choices of basis and compare them. They discard the rounds in which Bob measured in a different basis than the one prepared by Alice.
  • Parameter estimation: Alice and Bob 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: Alice and Bob choose a classical error correcting code and publicly communicate in order to correct their string of bits. At the end of this phase Alice and Bob hold the same bit-string.
  • Privacy amplification: Alice and Bob use an extractor on the previously established string to generate a smaller but completely secret string of bits, which is the final key.

Requirements

  • Network Stage: Prepare and Measure
  • Relevant Network Parameters: transmission error , measurement error (see Prepare and Measure)
  • Benchmark values:
    • Minimum number of rounds ranging from to depending on the network parameters , for commonly used security parameters.
    • , taking a depolarizing model as benchmark. Parameters satisfying are sufficient to asymptotically get positive secret key rate.
  • requires random number generator.


Notation

  • number of total rounds of the protocol.
  • size of the secret key.
  • bits of input of Alice and Bob, respectively, that define the measurement basis.
  • bits of output of Alice and Bob, respectively.
  • is a shorthand notation for the string .
  • final key of Alice and Bob, 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.

Properties

The protocol implements -QKD, which means that it generates an -correct, -secret key of length in rounds. The security parameters of this protocol are given 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).

Protocol Description

  • Input:
  • Output:

1. Distribution and measurement

  1. For
    1. Alice chooses random bits and such that
    2. Alice prepares and sends it to Bob
    3. Bob announces receiving a state
    4. Bob chooses bit such that
    5. Bob measures in basis with outcome

At this stage Alice holds strings and Bob , all of length .

2. Sifting

  1. Alice and Bob publicly announce
  2. For
    1. If
      1. append
      2. append
      3. append
      4. append

Now Alice holds strings and Bob , all of length .

3. Parameter estimation

  1. Set size = 0
  2. For
    1. If
      1. Alice and Bob publicly announce
      2. Alice and Bob compute , where is the Kronecker delta
    2. size += 1;
  3. Both Alice and Bob, each, compute

4. Error correction

is an error correction subroutine (see [9]) determined by the previously estimated value of and with error parameters and

  1. Both Alice and Bob run .
  2. Bob obtains

5. Privacy amplification

is a privacy amplification subroutine (see [10]) determined by the size , computed from equation for key length (see Properties), and with secrecy parameter

  1. Alice and Bob run and obtain secret keys ;

Further Information

  1. BB(1984) introduces the BB84 protocol, as the name says, by Charles Bennett and Gilles Brassard.
  2. TL(2017) The derivation of the key length in Properties, combines the techniques developed in this article and minimum leakage error correcting codes.
  3. GL03 gives an extended analysis of the BB84 in the finite regime.
  4. Sifting: the BB84 protocol can also be described in a symmetric way. This means that the inputs and are chosen with the same probability. In that case only of the generated bits are discarded during the sifting process. Indeed, in the symmetric protocol, Alice and Bob measure in the same basis in about half of the rounds.
  5. LCA05 the asymmetric protocol was introduced to make this more efficient protocol presented in this article.
  6. A post-processing of the key using 2-way classical communication, denoted Advantage distillation, can increase the QBER tolerance up to (3).
  7. We remark that in Pseudo Code, the QBER in the basis is not estimated during the protocol. Instead Alice and Bob make use of a previous estimate for the value of and the error correction step, Step 4 in the pseudo-code, will make sure that this estimation is correct. Indeed, if the real QBER is higher than the estimated value , Pseudo Code will abort in the Step 4 with very high probability.
  8. The BB84 can be equivalently implemented by distributing EPR pairs and Alice and Bob making measurements in the and basis, however this required a entanglement distribution network stage.
  9. Secret-Key Reconciliation by Public Discussion
  10. Security of Quantum Key Distribution
contributed by Bas Dirke, Victoria Lipinska, Gláucia Murta and Jérémy Ribeiro