Example #1
0
 public AsymmetricCipher(CipherObject privateKey, CipherObject publicKey)
 {
     this.PrivateKey = privateKey;
     this.PublicKey  = publicKey;
 }
Example #2
0
 public bool Equals(CipherObject other)
 {
     return(this.Content.SequenceEqual(other.Content));
 }
Example #3
0
 public AsymmetricCipher()
 {
     this.PrivateKey = new CipherObject();
     this.PublicKey  = new CipherObject();
 }