blob: 08931e12aec65dde38c5a1a684fd4eea676747c4 [file] [log] [blame]
// See file LICENSE for more information.
part of api;
/// Abstract [CipherParameters] to init an asymmetric key generator.
abstract class KeyGeneratorParameters implements CipherParameters {
final int bitStrength;
KeyGeneratorParameters(this.bitStrength);
}