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