Esempio n. 1
0
 private void EncryptInternal(
     ReadOnlySpan <byte> nonce,
     ReadOnlySpan <byte> plaintext,
     Span <byte> ciphertext,
     Span <byte> tag,
     ReadOnlySpan <byte> associatedData = default)
 {
     AesAEAD.Encrypt(s_aesCcm, _keyHandle, nonce, associatedData, plaintext, ciphertext, tag);
 }