<?xml version="1.0" encoding="US-ASCII"?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
<!ENTITY rfc2119 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml">
<!ENTITY rfc2223 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2223.xml">
<!ENTITY rfc2578 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2578.xml">
<!ENTITY rfc2579 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2579.xml">
<!ENTITY rfc2580 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2580.xml">
<!ENTITY rfc2629 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2629.xml">
<!ENTITY rfc3410 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.3410.xml">
<!ENTITY rfc4181 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.4181.xml">
]>
<?rfc toc="yes"?>
<?rfc symrefs="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<?rfc strict="no"?>
<?rfc rfcedstyle="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>

<rfc category="info" docName="draft-hao-schnorr-04" ipr="trust200902">
  <front>
    <title abbrev="Schnorr NIZK Proof">Schnorr NIZK Proof: Non-interactive Zero Knowledge Proof for Discrete Logarithm</title>

      <author fullname="Feng Hao" initials="F" role="editor"
            surname="Hao">
      <organization>Newcastle University (UK)</organization>

      <address>
        <postal>
          <street>Claremont Tower, School of Computing Science, Newcastle University</street>

          <city>Newcastle Upon Tyne</city>

          <country>United Kingdom</country>
        </postal>

        <phone>+44 (0)191-208-6384</phone>

        <email>feng.hao@ncl.ac.uk</email>
      </address>
    </author>

    <date  year="2016" />

    <!-- IETF area is optional -->

    <area>Security</area>

    <workgroup>Internet Engineering Task Force</workgroup>

    <keyword>Zero Knowledge Proof</keyword>

    <keyword>Schnorr NIZK proof</keyword>

    <keyword>Identification protocol</keyword>

    <!--add additional keywords here for IETF website search engine -->
    <abstract>
    <t>
    This document describes Schnorr NIZK proof, a non-interactive
    variant of the three-pass Schnorr identification scheme. The
    Schnorr NIZK proof allows one to prove the knowledge of a discrete
    logarithm without leaking any information about its value.  It can
    serve as a useful building block for many cryptographic protocols
    to ensure the participants follow the protocol specification
    honestly. This document specifies the Schnorr NIZK proof in both
    the finite field and the elliptic curve settings. 
    </t>
    </abstract>
 
   </front>

  <middle>

        <section anchor="intro" title="Introduction">

            <t>
            A well-known principle for designing robust public key
            protocols states as follows: "Do not assume that a message
            you receive has a particular form (such as g^r for known
            r) unless you can check this" <xref target="AN95" />.
            This is the sixth of the eight principles defined by Ross
            Anderson and Roger Needham at Crypto'95. Hence, it is also
            known as the "sixth principle". In the past thirty years,
            many public key protocols failed to prevent attacks, which
            can be explained by the violation of this principle
            <xref target="Hao10" />.
            </t>
            
            <t>
            While there may be several ways to satisfy the sixth
            principle, this document describes one technique that
            allows one to prove the knowledge of a discrete logarithm
            (e.g., r for g^r) without revealing its value. This
            technique is called the Schnorr NIZK proof, which is a
            non-interactive variant of the three-pass Schnorr
            identification scheme <xref target="Stinson06" />. The
            original Schnorr identification scheme is made
            non-interactive through a Fiat-Shamir transformation
            <xref target="FS86" />, assuming that there exists a
            secure cryptographic hash function (i.e., so-called random oracle model).
            </t>  
           	
           	<t>
           	The Schnorr NIZK proof can be implemented over a finite 
           	field or an elliptic curve (EC). 
           	The technical specification is basically the same, except that the underlying 
           	cyclic group is different. For completeness, this document describes
           	the Schnorr NIZK proof in both the finite field and the EC
           	settings.
           	</t>
           	
            <section title="Requirements Language">
            <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119 <xref target="RFC2119" />.
            </t>
            </section>
            
            <section title="Notations">
            
            <t>
            The following notations are used in this document:
            </t>
            
            <t>
            <list style="symbols">    
                <t>Alice: the assumed identity of the prover in the protocol </t>
                <t>Bob: the assumed identity of the verifier in the protocol </t>
                <t>a || b: concatenation of a and b</t>           
                <t>t: the bit length of the challenge chosen by Bob</t>
                <t>H: a secure cryptographic hash function</t>       
                <t>p: a large prime</t>
                <t>q: a large prime divisor of p-1, i.e., q | p-1</t>
                <t>Zp*: a multiplicative group of integers modulo p</t>
                <t>Gq: a subgroup of Zp* with prime order q</t>
                <t>g: a generator of Gq</t>                
                <t>g^x: g raised to the power of x</t>
                <t>a mod b: a modulo b</t>
                <t>Fq: a finite field of q elements where q is a prime</t>
                <t>E(Fq): an elliptic curve defined over Fq</t>
                <t>G: a generator of the subgroup over E(Fq) with prime order n</t>
                <t>n: the order of G</t>	
                <t>h: the cofactor of the subgroup generated by G, as defined by h = |E(Fq)|/n</t>			
                <t>P x [b]: multiplication of a point P with a scalar b over E(Fq)</t>          
                <t>P.x: the x coordinate of a point P over E(Fq)</t>     
            </list>
            </t>        
                           
            </section>              

		</section>
		
		<section title="Schnorr NIZK Proof over Finite Field">
		
	        <section title="Group Parameters">
        	
	        <t>When implemented over a finite field, the Schnorr NIZK Proof uses
	        	the same group setting as DSA. Let p and q be two large primes with q | p-1. 
	        	Let Gq denote the subgroup of Zp* of prime order q, and g be a generator for the 
	        	subgroup. Refer to <eref target="http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/DSA2_All.pdf">NIST</eref> for values of (p, q, g) that satisfy different security levels.  
	        </t> 
	        
	        </section>
	        	        	
	        <section title="Schnorr Identification Scheme">
       
            <t>The Schnorr identification scheme runs interactively between Alice (prover) and Bob (verifier). 
            In the setup of the scheme, Alice publishes her public key X = g^x mod p where x is the private key chosen uniformly at random
	        		from [0, q-1]. The value X must be an element in the subgroup Gq, which anyone can verify. This is to ensure that 
	        		the discrete logarithm of X with respect to the base g actually exists. 
	        </t>
	        	
	        <t>The protocol works in three passes:
	        </t>
        
	        <t>
	        <list style="numbers">
	            <t>Alice chooses a number v uniformly at random from [0, q-1] and computes V = g^v mod p. She sends V to Bob.</t>
	            <t>Bob chooses a challenge c uniformly at random from [0, 2^t-1], where t is the bit length of the challenge (say t = 80). Bob sends c to Alice.</t>
	            <t>Alice computes b = v - x * c mod q and sends it to Bob. </t>        
	        </list>
	        </t>
        
	        <t>
	        At the end of the protocol, Bob checks if the following equality holds: V = g^b * X^c mod p. The verification succeeds only
	        if the equality holds. The process is summarized in the following diagram.
	        </t>
        
	    <figure>
        <artwork><![CDATA[Information Flows in Schnorr Identification Scheme
     
       Alice                               Bob
      -------                             -----    
    
choose random v from [0, q-1]
    
compute V = g^v mod p    -- V ->                           
                              
compute b = v-x*c mod q  <- c -- choose random c from [0, 2^t-1]
    
                         -- b -> check if V = g^b * X^c mod p?     
      	]]></artwork>        
        </figure>
      
	        </section>
        
	        <section title="Non-Interactive Zero-Knowledge Proof">
        
	        <t>
	        The Schnorr NIZK proof is obtained from the interactive Schnorr identification scheme through a Fiat-Shamir 
	        transformation <xref target="FS86" />. This transformation involves using a secure cryptographic hash function to issue the challenge 
	        instead. More specifically, the challenge is redefined as c = H(g || g^v ||  g^x || UserID || OtherInfo), where UserID is a 
	        unique identifier for the prover and OtherInfo is optional data. The OtherInfo
	        is included here for generality, as some security protocols built on top of the Schnorr NIZK proof may wish to include more contextual information such 
	        as the protocol name, timestamp and so on. The exact items (if any) in OtherInfo shall be left to specific protocols to define. However, the format of OtherInfo
	        in any specific protocol must be fixed and explicitly defined in the protocol specification.
	        </t>                                    
                    
	        <t>Within the hash function, there must be a clear boundary between the concatenated items. Usually, the boundary
	        is implicitly defined once the length of each item is publicly known. However, in the general case, it is safer to 
	        define the boundary explicitly. It is recommended that one should always prepend each item with a 4-byte integer that 
	        represents the byte length of the item. The OtherInfo may contain multiple sub-items. In that case, the same rule 
	        shall apply to ensure a clear boundary between adjacent sub-items.
	        </t>
        
	        </section>
        
	        <section title="Computation Cost">

	        <t>
	        In summary, to prove the knowledge of the exponent for X = g^x, Alice generates
	        a Schnorr NIZK proof that contains: {UserID, OtherInfo, V = g^v mod p, r = v - x*c mod q}, where c = H(g || g^v ||  g^x || UserID || OtherInfo).
	        </t>
        
	        <t>
	        To generate a Schnorr NIZK proof, the cost is roughly one modular exponentiation: that is to compute g^v mod p. In practice,
	        this exponentiation may be pre-computed in the off-line manner to optimize efficiency. The cost of the remaining operations
	        (random number generation, modular multiplication and hashing) is negligible as compared with the modular exponentiation.
	        </t>
        
	        <t>
	        To verify the Schnorr NIZK proof, the following computations shall be performed.
	        </t>
        
	        <t>
            <list style="numbers">
	            <t>To verify X is within [1, p-1] and X^q = 1 mod p</t>
	            <t>To verify V = g^r * X^c mod p</t>
            </list>                        
	        </t>
        
	        <t>
	        Hence, the cost of verifying a Schnorr NIZK proof is approximately two exponentiations: one for computing X^q mod p and
	        the other for computing g^r * X^c mod p. (It takes roughly one exponentiation to compute the latter using a simultaneous exponentiation technique as 
	        described in <xref target="MOV96" />.) 
	        </t>
        
	        <t>
	        It is worth noting that some applications may specifically exclude the identity element as
	        a valid public key. In that case, one shall check X is within [2, p-1] instead of [1, p-1].  Also note that in the DSA-like group setting, 
	        it requires a full modular exponentiation to validate a public key, but in the ECDSA-like setting, the public key validation incurs almost
	        negligible cost due to the cofactor 
	        being very small (see <xref target="MOV96" />).        
	        </t>
        
	        </section>

		</section>

	<section title="Schnorr NIZK Proof over Elliptic Curve">
	
		<section title="Group Parameters">
		
		<t>When implemented over an elliptic curve, the Schnorr NIZK proof uses essentially the same EC setting as ECDSA, e.g., NIST P-256, P-384, and P-521 <xref target="NISTCurve" />. Let E(Fq) be an elliptic curve defined over a finite field Fq where q is a large prime. Let G be a base point on the curve that serves as a generator for the subgroup over E(Fq) of prime order n. The cofactor of the subgroup is denoted h, which is usually a small value (not more than 4). Details on EC operations, such as addition, negation and scalar multiplications, can be found in <xref target="MOV96" />.
 		</t> 

		</section>
			
		<section title="Schnorr Identification Scheme">
				
		<t>					 
		In the setup of the scheme, Alice publishes her public key Q = G x [x] where x is the private key chosen uniformly at random
		from [1, n-1]. The value Q must be an element in the subgroup over the elliptic curve, which
		anyone can verify. 
		</t>
			
		<t>The protocol works in three passes:
		</t>
			
		<t>
		<list style="numbers">
			<t>Alice chooses a number v uniformly at random from [1, n-1] and computes V = G x [v]. She sends V to Bob.</t>
			<t>Bob chooses a challenge c uniformly at random from [0, 2^t-1], where t is the bit length of the challenge (say t = 80). Bob sends c to Alice.</t>
			<t>Alice computes b = v - x * c mod n and sends it to Bob. </t>        			
		</list>
		</t>
			
		<t>
		At the end of the protocol, Bob checks if the following equality holds: V = G x [b] + Q x [c]. The verification succeeds only
		if the equality holds. The process is summarized in the following diagram.
		</t>
			
			<figure>
				<artwork><![CDATA[Information Flows in Schnorr Identification Scheme
						
Alice                               Bob
-------                             -----    
						
choose random v from [1, n-1]
						
compute V = G x [v]          -- V ->                           
						
compute b = v - x * c mod n  <- c -- choose random c from [0, 2^t-1]
						
                             -- b -> check if V = G x [b] + Q x [c]?     
					]]></artwork>        

				</figure>
				
		</section>
			
		<section title="Non-Interactive Zero-Knowledge Proof">
				
		<t>Same as before, the non-interactive variant is obtained through a Fiat-Shamir 
			transformation <xref target="FS86" />, by using a secure cryptographic hash 
			function to issue the challenge instead. Note that G, V and Q are points on the curve. In practice, it is sufficient to include only the x coordinate of the point into the hash function. Hence, let G.x, V.x and Q.x be the x coordinates of these points respectively. The challenge c is defined as c = H(G.x || V.x ||  Q.x || UserID || OtherInfo), where UserID is a unique identifier for the prover and OtherInfo is optional data as explained earlier.
		</t>                                    
					
		</section>
				
		<section title="Computation Cost">
					
		<t>
		In summary, to prove the knowledge of the discrete logarithm for Q = G x [x] with respect to base G over the elliptic curve, Alice generates
		a Schnorr NIZK proof that contains: {UserID, OtherInfo, V = G x [v], r = v - x*c mod n}, where c = H(G.x || V.x ||  Q.x || UserID || OtherInfo).
		</t>
					
		<t>
		To generate a Schnorr NIZK proof, the cost is one scalar multiplication: that is to compute G x [v]. 	
		</t>
					
		<t>
		To verify the Schnorr NIZK proof in the EC setting, the following computations shall be performed.
		</t>
					
		<t>		
		<list style="numbers">
			<t>To verify Q is a valid public key in the subgroup over E(Fq)</t>
			<t>To verify V = G x [r] + Q x [c]</t>
		</list>                        
		</t>
					
		<t>
		In the EC setting where the cofactor is small (say 1, 2 or 4), validating the public key Q is essentially free
		(see <xref target="MOV96" />). The cost of verifying a Schnorr NIZK proof in the EC setting is approximately one multiplication over the elliptic curve: i.e., computing G x [r] + Q x [c] (using the same simultaneous computation technique as before).  
		</t>
						
		</section>
						

	</section>
		
	<section title="Applications of Schnorr NIZK proof">
        
	<t>Some key exchange protocols, such as J-PAKE <xref target="HR08" /> and YAK <xref target="Hao10" />, rely on the Schnorr NIZK proof to ensure 
    participants in the protocol follow the specification honestly. Hence, the technique described in this document can be directly
        applied to those protocols. 
    </t>
        
	<t>The inclusion of OtherInfo also makes the Schnorr NIZK proof generally useful and sufficiently flexible to cater for
        a wide range of applications. For example, the described technique may be used to allow a user to demonstrate the Proof-Of-Possession (PoP) of
        a long-term private key to a Certificate Authority (CA) during the public key registration phrase. Accordingly, the OtherInfo should
        include extra information such as the CA name, the expiry date,
        the applicant's email contact and so on. In this case, the Schnorr NIZK proof is essentially no different from a self-signed Certificate Signing 
        Request generated by using DSA (or ECDSA). 
	</t>

	</section>

    <section title="Security Considerations">
            
            <t>
            The Schnorr identification protocol has been proven to satisfy the following properties, assuming that the verifier is honest and the discrete 
            logarithm problem is intractable (see <xref target="Stinson06" />).
            </t>
            
            <t>
            <list style="numbers">
            <t>Completeness -- a prover who knows the discrete logarithm is always able to pass the verification challenge.</t>
            <t>Soundness -- an adversary who does not know the discrete logarithm has only a negligible probability (i.e., 2^(-t)) to 
            pass the verification challenge.</t>
            <t>Honest verifier zero-knowledge -- a prover leaks no more than one bit information to the honest verifier: whether the prover knows the discrete logarithm.</t>
            </list>                        
            </t>

            <t>
            The Fiat-Shamir transformation is a standard technique to transform a three-pass interactive Zero Knowledge Proof protocol 
            (in which the verifier chooses a random challenge) to a non-interactive one, 
            assuming that there exists a secure cryptographic hash function. 
            Since the hash function is publicly defined, the prover is able to compute
            the challenge by itself, hence making the protocol non-interactive. The assumption of an honest verifier naturally holds 
            because the verifier can be anyone.
            </t>
            
            <t>
            A non-interactive Zero Knowledge Proof is often called a signature scheme. However, it should be noted that the Schnorr NIZK proof 
            described in this document is different from the original Schnorr signature scheme (see <xref target="Stinson06" />) in that it is
            specifically designed as a proof of knowledge of the discrete logarithm rather than a general-purpose digital signing algorithm.  
            </t>
            
            <t>
            When a security protocol relies on the Schnorr NIZK proof for proving the knowledge of a discrete logarithm in a
            non-interactive way, the threat of replay attacks shall be considered.    
            For example, the Schnorr NIZK proof might be replayed back to the prover itself (to introduce some 
            undesirable correlation between items in a cryptographic protocol). This particular attack
            is prevented by the inclusion of the unique UserID into the hash. The verifier shall check the prover's UserID is a valid identity and is different from its own. 
            Depending the context of specific protocols, other forms of replay attacks should be considered, and appropriate contextual
            information included into OtherInfo whenever necessary. 
            </t>

    </section>

    <section title="IANA Considerations">
    <t>This document has no actions for IANA.</t>
    </section>
    
        <section title="Acknowledgements">
    <t>The editor of this document would like to thank Dylan Clarke, Robert Ransom, Siamak Shahandashti and Robert Cragie for useful comments. 
    This work is supported by the EPSRC First Grant (EP/J011541/1) and the ERC Starting Grant (No. 306994).</t>
    </section>


  </middle>

  <back>

    <!-- References Section -->

    <references title="Normative References">

            <?rfc include="reference.RFC.2119.xml"?>

            <reference anchor="AN95">
                <front>
                    <title>Robustness principles for public key protocols</title>
                    <author initials="R." surname="Anderson" fullname="Ross Anderson">                            
                    </author>
                    <author initials="R." surname="Needham" fullname="Roger Needham">                            
                    </author>                
                    <date year="1995" />                    
                </front>
                <seriesInfo name="" value="Proceedings of the 15th Annual International Cryptology Conference on Advances in Cryptology" />
            </reference>
    
            <reference anchor="FS86">
                <front>
                    <title>How to Prove Yourself: Practical Solutions to Identification and Signature Problems</title>
                    <author initials="A." surname="Fiat" fullname="Amos Fiat">                            
                    </author>
                    <author initials="A." surname="Shamir" fullname="Adi Shamir">                            
                    </author>                
                    <date year="1986" />                    
                </front>
                <seriesInfo name="" value="Proceedings of the 6th Annual International Cryptology Conference on Advances in Cryptology" />
            </reference>
           
            <reference anchor="MOV96">
                <front>
                    <title>Handbook of Applied Cryptography</title>
                    <author initials="A." surname="Menezes" fullname="Alfred Menezes">
                    </author>
                    <author initials="P.V." surname="Oorschot" fullname="P.V. Oorschot">
                    </author>                
                    <author initials="S." surname="Vanstone" fullname="S. Vanstone">
                    </author>                
                    <date year="1996" />
                </front>
            </reference>         
            
              <reference anchor="Stinson06">
                <front>
                    <title>Cryptography: Theory and Practice (3rd Edition)</title>
                    <author initials="D." surname="Stinson" fullname="Douglas Stinson">
                    </author>
                    <date year="2006" />
                </front>
                <seriesInfo name="" value="CRC" />
            </reference>      
    </references>

    <references title="Informative References">
    
	    <reference anchor="NISTCurve" target="http://csrc.nist.gov/groups/ST/toolkit/documents/dss/NISTReCur.pdf"> 
    	<front>
    		<title>Recommended Elliptic Curves for Federal Government use
    		</title> 
    		<author fullname="NIST">
    		</author>
    		<date month="July" year="1999" />
    	</front> 
    	</reference>
    	
    		
            <reference anchor="HR08">
                <front>
                    <title>Password Authenticated Key Exchange by Juggling</title>
                    <author initials="F." surname="Hao" fullname="F. Hao">                            
                    </author>
                    <author initials="P." surname="Ryan" fullname="P. Ryan">                            
                    </author>                                    
                    <date month="May" year="2008" />                    
                </front>
                <seriesInfo name="" value="the 16th Workshop on Security Protocols" />
            </reference>
            
            <reference anchor="Hao10">
                <front>
                    <title>On Robust Key Agreement Based on Public Key Authentication</title>
                    <author initials="F." surname="Hao" fullname="Feng Hao">                            
                    </author>
                    <date month="February" year="2010" />                    
                </front>
                <seriesInfo name="" value="the 14th International Conference on Financial Cryptography and Data Security" />
            </reference>
            
            
    </references>
	</back>
</rfc>
