Metadata-Version: 2.1
Name: noknow
Version: 0.1
Summary: Non-Interactive Zero-Knowledge Proof Implementation in Pure Python
Home-page: https://github.com/GoodiesHQ/noknow-python/
Author: Austin Archer
Author-email: aarcher73k@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Security :: Cryptography
Description-Content-Type: text/markdown
Requires-Dist: gmpy2
Requires-Dist: ecpy

<h1 align="center">NoKnow</h1>
<div align="center">
  <strong>Zero-Knowledge Proof implementation in pure python</strong>
</div>
<br />
<div align="center">
  <img src="http://badges.github.io/stability-badges/dist/experimental.svg" alt="Experimental" />
</div>
<div align="center">
  <sub>
    Built with ❤︎ by <a href="https://www.linkedin.com/in/austinarcher/">Austin Archer</a> :)
  </sub>
</div>
<br />



## Table of Contents
- [Credits](#credits)
- [Purpose](#purpose)
- [How it Works](#how-it-works)
- [API](#api)
- [Example Usage](#example-usage)


## Credits
I am far from a methematician and did not design the protocol myself. The proofs used are rather complex in nature. I will do my best to explain its functionality, but please refer to the research papers on which this implementation is based as it does a far more complete job with explanation than I. **Note:** the paper's implementation uses the set of all real numbers as the cyclic group for simplicity. In this implementation, the cyclic group used is an elliptic curve.

[Implementing Zero-Knowledge Authentication with Zero Knowledge](https://ojs.pythonpapers.org/index.php/tppm/article/view/155) by Brandon Lum Jia Jun


## Purpose
Zero-Knowledge Proofs are undoubtedly the future of authentication security within various IT and application development industrires. The ability to verify the veracity of a claim (ex: proving that you know a secret password), without divulging any information about the claim itself (ex: passwords or hashes), allows for servers to guarantee secure AAA operations (authentication, authorization, and accounting) without exposing private information. `NoKnow` is an implementation of a [Non-Interactive Zero-Knowledge Proof](https://en.wikipedia.org/wiki/Non-interactive_zero-knowledge_proof) protocol specifically designed for verifying text-based secrets, which is ideal for passwords or other authentication means.


## How It Works
TODO: explain how it works

## API

The `noknow` Python API is meant to be simple and intuitive:

### Core Components

#### noknow.core.ZKParameters:
The parameters used to initialize the Elliptic Curve within the Zero-Knowledge crypto system.

    class ZKParameters(NamedTuple):
        """
        The parameters required for creating the Zero-Knowledge Cryptosystem
        """
        curve: str          # the name of the standardized elliptic curve to use for cyclic group point generation
        d: int              # the large prime number used to generate an elliptic curve point and as a modulo

#### noknow.core.ZKSignature:
A cryptographic public signature created from an Elliptic Curve and a user-provided secret (ex: a password) which should be stored by the server (along with the `ZKParameters` used) and can be used to validate future challenges.

    class ZKSignature(NamedTuple):
        """
        A cryptographic signature distinct from a hash that can be used to validate the same input in the future
        """
        params: ZKParameters  # the reference ZK parameters
        signature: int        # the calculated signature derived from the ZK curve and user secret


#### noknow.core.ZKChallenge:

    class ZKChallenge(NamedTuple):
        """
        A cryptographic challenge created by a user based on the signature (derived from the password) 
        """
        params: ZKParameters  # the reference ZK parameters
        token: int            # the server-provided random tokens
        c: int                # the hash derived from the signature, a random point, and the random token
        z: int                # a value derived from the random point and password hash


### Proof

The `ZKProof` class is the central component of `NoKnow` and its state (defined by `ZKParameters`) should be inherently known to both the Client (Prover) and Server (Verifier).

#### instance methods
<table>
  <tr>
    <th>Method</th>
    <th><img width=600 />Parameters</th>
    <th>Role</th>
    <th>Purpose</th>
  </tr>
  <tr>
    <td><code>create_signature</code></td>
    <td><code>secret: Union[str, bytes]</code></td>
    <td>Prover</td>
    <td>Create a cryptographic signature derived from the value <code>secret</code> to be generated during initial registration and stored for subsequent challenge proofs</td>
  </tr>
  <tr>
    <td><code>create_challenge</code></td>
    <td><code>secret: Union[str, bytes]</code> <br /> <code>token: int</code></td>
    <td>Prover</td>
    <td>Create a ZK challenge with the <code>secret</code> a given randomly generated <code>token</code> provided by the server</td>
  </tr>
  <tr>
    <td><code>prove_challenge</code></td>
    <td><code>challenge: ZKChallenge</code> <br /> <code>signature: ZKSignature</code> <br /> <code>token: int</code></td>
    <td>Verifier</td>
    <td>Verify the user-provided <code>challenge</code> against the stored <code>signature</code> and randomly generated <code>token</code> to verify the validity of the challenge</td>
  </tr>
</table>


## Example Usage
TODO: Include example usage

#### Example 1
    #!/usr/bin/env python3
    """
    Extremely simple example of NoKnow ZK Proof implementation
    """

    from noknow import ZKProof
    from getpass import getpass


    def main():
        # the state of `zk` should be known to both Prover (Client) and Verifier (Server)
        zk = ZKProof.new()
        # `signature` is sent to Server along with `zk.params` for persistent storage
        signature = zk.create_signature(getpass("Create Password: "))

        while True:
            # Server generates random token and sends to Client
            token = ZKProof.random_token()

            # Client generates a challenge with the token and submits to Server
            challenge = zk.create_challenge(getpass("Enter Password: "), token)

            # Server proves the challenge with the shared token, user-submitted challenge, and stored signature
            if zk.prove_challenge(challenge, signature, token):
                print("Authentication Successful!\n")
                break
            else:
                print("Authentication Failed!\n")

    if __name__ == "__main__":
        main()


