Zeth - Zerocash on Ethereum  0.8
Reference implementation of the Zeth protocol by Clearmatics
Public Member Functions | List of all members
zeth.core.ownership.OwnershipKeyPair Class Reference

Public Member Functions

def __init__ (self, OwnershipSecretKey a_sk, OwnershipPublicKey a_pk)
 

Detailed Description

Key-pair for ownership proof. This represents the 'payment key' (apk)
from the 'payment address' and the 'spending key' (ask) from the
'private address'. These are components of ZethAddress, used in
note commitments in the joinsplit statement.

Definition at line 25 of file ownership.py.

Constructor & Destructor Documentation

◆ __init__()

def zeth.core.ownership.OwnershipKeyPair.__init__ (   self,
OwnershipSecretKey  a_sk,
OwnershipPublicKey  a_pk 
)

Definition at line 32 of file ownership.py.

32  def __init__(self, a_sk: OwnershipSecretKey, a_pk: OwnershipPublicKey):
33  self.a_sk: OwnershipSecretKey = a_sk
34  self.a_pk: OwnershipPublicKey = a_pk
35 
36 

The documentation for this class was generated from the following file: