Пример #1
0
 public Keys(PublicKey PublicKey, PrivateKey PrivateKey)
 {
     this.PublicKey  = PublicKey;
     this.PrivateKey = PrivateKey;
 }
Пример #2
0
 public Keys(Keys K)
 {
     this.PublicKey  = K.PublicKey;
     this.PrivateKey = K.PrivateKey;
 }
Пример #3
0
 public Keys()
 {
     this.PublicKey  = new PublicKey();
     this.PrivateKey = new PrivateKey();
 }