Exemple #1
0
 private void SetPlainText()
 {
     _decryptedBuffer = CryptoHelper.ExtractIVAndDecrypt(_algorithm, _cipherText, 0, _cipherText.Length);
     State            = EncryptionState.Decrypted;
 }
Exemple #2
0
 void SetPlainText()
 {
     this.decryptedBuffer = CryptoHelper.ExtractIVAndDecrypt(this.algorithm, this.cipherText, 0, this.cipherText.Length);
     this.State           = EncryptionState.Decrypted;
 }