Zeth - Zerocash on Ethereum  0.8
Reference implementation of the Zeth protocol by Clearmatics
Classes | Functions
zeth.core.zeth_address Namespace Reference

Classes

class  ZethAddress
 
class  ZethAddressPriv
 
class  ZethAddressPub
 

Functions

ZethAddress generate_zeth_address ()
 

Function Documentation

◆ generate_zeth_address()

ZethAddress zeth.core.zeth_address.generate_zeth_address ( )

Definition at line 110 of file zeth_address.py.

110 def generate_zeth_address() -> ZethAddress:
111  ownership_keypair = gen_ownership_keypair()
112  encryption_keypair = generate_encryption_keypair()
113  return ZethAddress.from_key_pairs(ownership_keypair, encryption_keypair)
Here is the call graph for this function:
Here is the caller graph for this function:
zeth.core.ownership.gen_ownership_keypair
OwnershipKeyPair gen_ownership_keypair()
Definition: ownership.py:59
zeth.core.zeth_address.generate_zeth_address
ZethAddress generate_zeth_address()
Definition: zeth_address.py:110
zeth.core.encryption.generate_encryption_keypair
EncryptionKeyPair generate_encryption_keypair()
Definition: encryption.py:163