PublicKey
Representation of Subject Public Key Info
Extends
PemData
<SubjectPublicKeyInfo
>
Constructors
new PublicKey()
new PublicKey(
asn
):PublicKey
Creates a new instance from ASN.1
Parameters
asn
SubjectPublicKeyInfo
ASN.1 object
Returns
Overrides
PemData<SubjectPublicKeyInfo>.constructor
new PublicKey()
new PublicKey(
raw
):PublicKey
Creates a new instance
Parameters
raw
AsnEncodedType
Encoded buffer (DER, PEM, HEX, Base64, Base64Url)
Returns
Overrides
PemData<SubjectPublicKeyInfo>.constructor
Properties
algorithm
algorithm:
Algorithm
Gets a key algorithm
rawData
readonly
rawData:ArrayBuffer
Gets a DER encoded buffer
Inherited from
PemData.rawData
tag
protected
readonly
tag:string
PEM tag
Overrides
PemData.tag
NAME
static
NAME:string
="ASN"
Inherited from
PemData.NAME
Methods
equal()
equal(
data
):data is PublicKey
Returns true
if ASN.1 data is equal to another ASN.1 data, otherwise false
Parameters
data
any
Any data
Returns
data is PublicKey
Inherited from
PemData.equal
export()
Call Signature
export(
crypto
?):Promise
<CryptoKey
>
Returns a public CryptoKey
Parameters
crypto?
Crypto
Crypto provider. Default is from CryptoProvider
Returns
Promise
<CryptoKey
>
Call Signature
export(
algorithm
,keyUsages
,crypto
?):Promise
<CryptoKey
>
Returns a public CryptoKey with specified parameters
Parameters
algorithm
Algorithm
Algorithm
| RsaHashedImportParams
| EcKeyImportParams
keyUsages
KeyUsage
[]
A list of key usages
crypto?
Crypto
Crypto provider. Default is from CryptoProvider
Returns
Promise
<CryptoKey
>