Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggestions for pqARKG-H security proof #31

Open
wants to merge 12 commits into
base: pqarkg-h
Choose a base branch
from
33 changes: 17 additions & 16 deletions pqarkg-h-security/pqarkg-h.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
\usepackage[keys,lambda,sets,adversary,advantage,events,logic,operators,probability,ff,primitives]{cryptocode}
\usepackage{xspace}
\usepackage{draftwatermark}
\usepackage{amsthm}

\addbibresource{pqarkg-h.bib}

Expand Down Expand Up @@ -88,6 +89,8 @@

\let\oldconcat\concat\renewcommand{\concat}{\oldconcat\,}

\newtheorem{theorem}{Theorem}[section]

\begin{document}
\maketitle

Expand Down Expand Up @@ -364,12 +367,18 @@ \section{\ALGNAME}

\section{Reduction of \ALGBASE to \ALGNAME in \msks security experiment}

We now show that \ALGNAME is \msks secure
by showing that an adversary \bdv that defeats \expmsksnew
also defeats \expmsksbase.
Given such an adversary \bdv,
we construct an adversary \adv that defeats \expmsksbase
as defined in \figref{exp-msks-pqarkg}.
We now show that \ALGNAME can satisfy malicious strong key security \msks. The proof requires two additional properties of some key blinding schemes that are defined in \cite{Wilson}: unique blinding and private-key unblinding. Recall from \cite{Wilson} that \ALGBASE satisfies \msks when instantiated with a key blinding scheme that provides these properties. Therefore a reduction proof from \ALGNAME to \ALGBASE suffices.

\begin{theorem}
Let \ALGNAME be the ARKG construction described in \figref{pqarkg-h}, instantiated with a key blinding scheme \bl that provides unique blinding and supports private-key unblinding. For any efficient adversary \bdv, there exists an efficient algorithm \adv such that
$$ \advantage{\msks}{\ALGNAME,\bdv} = \advantage{\msks}{\ALGBASE,\adv} $$
where the security experiment \msks is defined in \figref{exp-msks-pqarkg-h} for \ALGNAME and in \figref{exp-msks-pqarkg} for \ALGBASE.
\end{theorem}

\begin{proof}

Given an adversary \bdv that defeats \expmsksnew,
we construct an adversary \adv that defeats \expmsksbase.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like the general outline of this, but let's move this to a separate changeset apart from the smaller fixes.


\begin{figure}
\figlabel{adv-reduction}
Expand Down Expand Up @@ -412,7 +421,7 @@ \section{Reduction of \ALGBASE to \ALGNAME in \msks security experiment}
thus~\ALGNAME produces the same $\tau$ on line 3 of its \algdpk and \algdsk functions
as \ALGBASE does on line 2 of its \algdpk and \algdsk functions.

We see that \adv passes the conditions on lines 7-9 of \expmsksbase:
To prove that \adv wins its game precisely when \bdv wins its game, we observe that \adv passes each of the three conditions on lines 7--9 of \expmsksbase if and only if \bdv passes the corresponding condition from the ones on lines 7--9 of \expmsksnew:

\begin{itemize}
\item{$\algblcheck(\skstar, \pkstar)$ succeeds because:
Expand Down Expand Up @@ -472,15 +481,7 @@ \section{Reduction of \ALGBASE to \ALGNAME in \msks security experiment}

\end{itemize}

In conclusion, we see that \adv wins its game precisely when \bdv wins its game. Therefore:

$$ \advantage{\msks}{\ALGNAME,\bdv} \geq \advantage{\msks}{\ALGBASE,\adv} $$

On the other hand, given an adversary \adv that defeats \expmsksbase, we can trivially construct an adversary \bdv that defeats \expmsksnew by invoking \adv and additionally returning $b^*=1$. Therefore the advantages are equal:

$$ \advantage{\msks}{\ALGNAME,\bdv} = \advantage{\msks}{\ALGBASE,\adv} $$

Thus we conclude that \ALGNAME retains the \msks property of \ALGBASE.
\end{proof}


\section{Acknowledgements}
Expand Down