Example #1
0
 public KeyPair(PublicKey publicKey, PrivateKey privateKey)
 {
     this.privateKey = privateKey;
     this.publicKey  = publicKey;
 }
Example #2
0
 public PrivateKeys(PrivateKey spendKey, PrivateKey viewKey)
 {
     this.spendKey = spendKey;
     this.viewKey  = viewKey;
 }
Example #3
0
 public WalletKeys(PublicKey publicSpendKey, PrivateKey privateSpendKey,
                   PublicKey publicViewKey, PrivateKey privateViewKey)
 {
     this.spendKeys = new KeyPair(publicSpendKey, privateSpendKey);
     this.viewKeys  = new KeyPair(publicViewKey, privateViewKey);
 }