generateIv static method
Gera um IV criptograficamente seguro de 16 bytes (AES-CBC / AES-CTR).
Nunca reutilize o mesmo IV com a mesma chave.
Implementation
static Uint8List generateIv() => _randomBytes(16);
Gera um IV criptograficamente seguro de 16 bytes (AES-CBC / AES-CTR).
Nunca reutilize o mesmo IV com a mesma chave.
static Uint8List generateIv() => _randomBytes(16);