Ejemplo n.º 1
0
 public Crypto(SymmetricAlgorithm algorithm, CryptoInformation cryptoInformation)
 {
     this.algorithm         = algorithm;
     this.cryptoInformation = cryptoInformation;
 }
Ejemplo n.º 2
0
 public Crypto(CryptoInformation cryptoInformation) : this(Aes.Create(), cryptoInformation)
 {
     this.cryptoInformation = cryptoInformation;
 }