blob: 994e3b19e1f96b8c85c49d03067c6854701e8d4b [file] [log] [blame] [edit]
// See file LICENSE for more information.
part of '../../api.dart';
/// [CipherParameters] consisting of an underlying [CipherParameters] (of type
/// [UnderlyingParameters]) and an acompanying salt of type [Uint8List].
class ParametersWithSalt<UnderlyingParameters extends CipherParameters>
implements CipherParameters {
final UnderlyingParameters parameters;
final Uint8List salt;
ParametersWithSalt(this.parameters, this.salt);
}