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