blob: a93ef83f89e88fd6e4b403ac5584fa8d9a8513a0 [file] [log] [blame] [edit]
// See file LICENSE for more information.
part of '../../api.dart';
/// A [CipherParameters] to hold an asymmetric public key
class PublicKeyParameter<T extends PublicKey>
extends AsymmetricKeyParameter<T> {
PublicKeyParameter(PublicKey key) : super(key as T);
}