INNER CODE UNIT · Dart
IV
leocavalcante/encrypt · lib/src/encrypted.dart:62
class IV extends Encrypted {
/// Creates an Initialization Vector object from a Uint8List.
IV(Uint8List bytes) : super(bytes);
/// Creates an Initialization Vector object from a hexdecimal string.
IV.fromBase16(String encoded) : super.fromBase16(encoded);
/// Creates an Initialization Vector object from a Base64 string.
IV.fromBase64(String encoded) : super.fromBase64(encoded);
/// Creates an Initialization Vector object from a UTF-8 string.
IV.fromUtf8(String input) : super.fromUtf8(input);
/// Creates an Initialization Vector object from a length.
/// The key is filled with [length] bytes generated by a
/// Random.secure() generator
IV.fromLength(int length) : super.fromLength(length);