Esempio n. 1
0
 public void Decrypt(byte[] nonce, byte[] ciphertext, byte[] tag, byte[] plaintext, byte[] associatedData = null)
 {
     AesAEAD.CheckArgumentsForNull(nonce, plaintext, ciphertext, tag);
     Decrypt((ReadOnlySpan <byte>)nonce, ciphertext, tag, plaintext, associatedData);
 }