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 5, 2024. It is now read-only.
* @note Assumes:- in == iv + ciphertext, i.e. the iv and the ciphertext are
* contiguous. This allows for a very efficient decryption
* algorithm that would not otherwise be possible
* @param in IN -- ciphertext to decrypt, including IV
I'd propose to modify the doc to something like:
* @note Assumes:- the IV and the ciphertext need to be
* contiguous. This allows for a very efficient decryption
* algorithm that would not otherwise be possible
* @param in IN -- ciphertext to decrypt, not including IV * @param iv IN -- the IV for the encrypt/decrypt, must be followed by ciphertext