blob: 181a401579bebaf7e0ef2d9a16f5c181ba35a617 [file] [log] [blame]
// See file LICENSE for more information.
part of api;
/// [CipherParameters] consisting of an underlying [CipherParameters] (of type [UnderlyingParameters]) and an initialization
/// vector of arbitrary length.
class ParametersWithIV<UnderlyingParameters extends CipherParameters?>
implements CipherParameters {
final Uint8List iv;
final UnderlyingParameters? parameters;
ParametersWithIV(this.parameters, this.iv);
}