iv method

Aes iv(
  1. dynamic iv
)

Sets the IV for use.

Implementation

Aes iv(dynamic iv) {
  _iv = _createIv(iv);
  return this;
}