blob: 9fa58d8f5c9fd61c73675a2363c2cae373b31e17 [file] [log] [blame] [edit]
// See file LICENSE for more information.
part of '../../api.dart';
/// Abstract [CipherParameters] to hold an asymmetric (public or private) key
abstract class AsymmetricKeyParameter<T extends AsymmetricKey>
implements CipherParameters {
final T key;
AsymmetricKeyParameter(this.key);
}