implements Quantum Money
Introduction
This example protocol is a private-key protocol which implements Quantum Money, a unique object generated by a Trusted Third Party (TTP). It is then circulated among untrusted clients (Transferability). Each client should be able to prove the authenticity of his owned quantum money to a verifier. On the other hand, an adversary must fail in counterfeiting the quantum money with overwhelmingly high probability (Unforgeability).
Outline
In this scheme, a Trusted Third Party (TTP) and a coin holder run the following procedure for generating and verifying a quantum coin:
- Quantum coin Generation โ The TTP chooses k random 4-bit strings, keeps them in secret and produce k quantum states. A newly issued quantum coin consists of a piece of paper glued to k quantum registers that hold k quantum states. The piece of paper contains a unique identification tag and k initially unmarked positions, where the i-th position has to be marked in k-bit classical register P when the corresponding quantum state is used in the verification protocol.
- Quantum coin Verification โ To verify a quantum coin through classical communication with the TTP, its holder sends the identification number of the quantum coin to the TTP. Then, the TTP and the coin holder exchange some classical information for choosing some quantum registers. The coin holder measures the chosen registers and sends their corresponding classical information to the TTP. The TTP verifies the authenticity of the coin by the secret information he possesses.
Assumptions
- A limited number of verifications are performed
Requirements
No content has been added to this section, yet!
Notation
- $\\\text{HMP}_{4}$-states: $|\\\alpha(x)\\\rangle = \\\frac{1}{2}\\\sum_{1 \\\le i \\\le 4} (-1)^{x_i} |i\\\rangle$, $x \\\in \\\{0,1\\\}^{4}$.
- For $m,a,b \\\in \\\{0,1\\\}$, $(x,m,a,b) \\\in \\\text{HMP}_{4}$ if
$$
b =
\\\begin{cases}
x_{1} \\\oplus x_{2+m} & \\\text{if } a = 0 \\\\\\\\\
x_{3-m} \\\oplus x_{4} & \\\text{if } a = 1
\\\end{cases}
$$ - $\\\text{HMP}_{4}$-queries: An $\\\text{HMP}_{4}$-query is an element $m \\\in \\\{0,1\\\}$. A valid answer to the query w.r.t. $x \\\in \\\{0,1\\\}^{4}$ is a pair $(a,b) \\\in \\\{0,1\\\} \\\times \\\{0,1\\\}$ such that $(x,m,a,b) \\\in \\\text{HMP}_{4}$. An $\\\text{HMP}_{4}$-state can be used to answer an $\\\text{HMP}_{4}$-query with certainty:
- If $m = 0$, let
$$v_{1} \\\overset{def}{=} \\\frac{|1\\\rangle + |2\\\rangle}{\\\sqrt{2}}$$
$$v_{2} \\\overset{def}{=} \\\frac{|1\\\rangle โ |2\\\rangle}{\\\sqrt{2}}$$
$$v_{3} \\\overset{def}{=} \\\frac{|3\\\rangle + |4\\\rangle}{\\\sqrt{2}}$$
$$v_{4} \\\overset{def}{=} \\\frac{|3\\\rangle โ |4\\\rangle}{\\\sqrt{2}}$$
- Otherwise ($m = 1$), let
$$v_{1} \\\overset{def}{=} \\\frac{|1\\\rangle + |3\\\rangle}{\\\sqrt{2}}$$
$$v_{2} \\\overset{def}{=} \\\frac{|1\\\rangle โ |3\\\rangle}{\\\sqrt{2}}$$
$$v_{3} \\\overset{def}{=} \\\frac{|2\\\rangle + |4\\\rangle}{\\\sqrt{2}}$$
$$v_{4} \\\overset{def}{=} \\\frac{|2\\\rangle โ |4\\\rangle}{\\\sqrt{2}}$$
- Measure $|\\\alpha(x_i)\\\rangle$ in the basis $\\\{v_1, v_2, v_3, v_4\\\}$, and let $(a,b)$ be $(0,0)$ if the outcome is $v_1$; $(0,1)$ if the outcome is $v_2$; $(1,0)$ if the outcome is $v_3$; $(1,1)$ if the outcome is $v_4$. Then $(x,m,a,b) \\\in \\\text{HMP}_{4}$ always.
Properties
- General Features:
- No need to quantum communication for quantum coin verification.
- The classical communication channel used for verification can be unencrypted.
- The database of the bank is static, and therefore many de-centralized โverification branchesโ can exist that do not have to communicate with one another.
- The number of verifications that a quantum coin can go through is limited.
- Security Claims:
- The coins are exponentially hard to counterfeit.
- Secure against an adversary who uses adaptive โattempted verificationsโ in order to collect information about a coin.
Technical Description
$\\\textbf{Stage 1: Quantum coin generation}$
Input: A secret record consists of $k$ entries $x_{1},โฆ,x_{k}$, $x_{i} \\\in \\\{0,1\\\}^{4}$.
Output: A โfreshโ quantum coin.
The Trusted Third Party (TTP) chooses $x_{1},โฆ,x_{k} \\\in \\\{0,1\\\}^{4}$ at random, keeps them secret and produces quantum states $|\\\alpha(x_{1})\\\rangle ,โฆ,|\\\alpha(x_{k})\\\rangle$. A โfreshโ quantum coin corresponding to this record consists of:
- $k$ quantum registers consisting of $2$ qubits each, where the $i$-th register contains $|\\\alpha(x_{i})\\\rangle$;
- a $k$-bit classical register $P$, initially set to $0^{k}$;
- a unique identification number.
$\\\textbf{Stage 2: Quantum coin verification}$
Input: the identification number of the quantum coin
Output: Accept or Reject
This stage is run as follows:
- The holder sends the identification number of the quantum coin to the TTP.
- The TTP chooses uniformly at random a set $L_{bn} \\\subset [k]$ of size $t$, and sends it to the coin holder.
- The holder consults $P$ and chooses uniformly at random a set $L_{hl} \\\subset L_{bn}$ consisting of $2t/3$ yet unmarked positions.
- He sends $L_{hl}$ to the bank and marks in $P$ all the elements of $L_{hl}$ as used.
- The TTP chooses at random $2t/3$ values $m_{i} \\\in \\\{0,1\\\}$, one for each $i \\\in L_{hl}$, and sends them to the coin holder.
- The holder measures the quantum registers corresponding to the elements of $L_{hl}$ in order to produce $2t/3$ pairs $(a_{i},b_{i})$ (refer to $\\\text{HMP}_{4}$-queries), such that $(x_{i}, m_{i}, a_{i}, b_{i}) \\\in \\\text{HMP}_{4} \\\quad \\\text{for all } i \\\in L_{hl}.$ He sends the list of $(a_{i},b_{i})$ to the TTP.
- The TTP checks whether
$$(x_{i}, m_{i}, a_{i}, b_{i}) \\\in \\\text{HMP}_{4} \\\quad \\\text{for all } i \\\in L_{hl},$$
in which case it confirms validity of the quantum coin. Otherwise, the coin is declared counterfeit.
Experimental Implementations
No content has been added to this section, yet!
Further Information
No content has been added to this section, yet!


Leave a Reply