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
{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
Hi I have a question about the implementation of AesCbc:
I see that the result of encryption is prefixed with the iv and the decryption, instead, removes the iv decrypting.
Is that a reason for this? from the RFC or usage examples of the Cipher dont do anything similar.
Hi I have a question about the implementation of
AesCbc:I see that the result of encryption is prefixed with the
ivand the decryption, instead, removes theivdecrypting.Is that a reason for this? from the RFC or usage examples of the
Cipherdont do anything similar.Even the tests vectors from https://datatracker.ietf.org/doc/html/rfc3602#section-4 the cipher does not include the
ivand the assertions you implemented need to modify the result to match the test vectors.Thanks for that!