You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is useful to be able to generate a hash without caring about the encrypted text, and it would be nice to just use the implementations in the aes_gcm crate directly.
The text was updated successfully, but these errors were encountered:
GMAC is an option, although you can also get similar properties out of AES-GCM itself by using an empty plaintext/ciphertext and passing only the additional associated data to be authenticated
(and, to make it usable,
AesGcm::init_ctr()
)It is useful to be able to generate a hash without caring about the encrypted text, and it would be nice to just use the implementations in the aes_gcm crate directly.
The text was updated successfully, but these errors were encountered: