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

Public Member Functions

def __init__ (self, EncryptionSecretKey k_sk, EncryptionPublicKey k_pk)
 

Detailed Description

Key-pair for encrypting joinsplit notes.

Definition at line 154 of file encryption.py.

Constructor & Destructor Documentation

◆ __init__()

def zeth.core.encryption.EncryptionKeyPair.__init__ (   self,
EncryptionSecretKey  k_sk,
EncryptionPublicKey  k_pk 
)

Definition at line 158 of file encryption.py.

158  def __init__(self, k_sk: EncryptionSecretKey, k_pk: EncryptionPublicKey):
159  self.k_pk: EncryptionPublicKey = k_pk
160  self.k_sk: EncryptionSecretKey = k_sk
161 
162 

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