Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.62 KB

key_import.importSPKI.md

File metadata and controls

41 lines (28 loc) · 1.62 KB

Function: importSPKI

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.


importSPKI<KeyLikeType>(spki, alg, options?): Promise<KeyLikeType>

Imports a PEM-encoded SPKI string as a runtime-specific public key representation (KeyObject or CryptoKey).

Type parameters

Name Type
KeyLikeType extends KeyLike = KeyLike

Parameters

Name Type Description
spki string -
alg string (Only effective in Web Crypto API runtimes) JSON Web Algorithm identifier to be used with the imported key, its presence is only enforced in Web Crypto API runtimes. See Algorithm Key Requirements.
options? PEMImportOptions -

Returns

Promise<KeyLikeType>

Example

const algorithm = 'ES256'
const spki = `-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEFlHHWfLk0gLBbsLTcuCrbCqoHqmM
YJepMC+Q+Dd6RBmBiA41evUsNMwLeN+PNFqib+xwi9JkJ8qhZkq8Y/IzGg==
-----END PUBLIC KEY-----`
const ecPublicKey = await jose.importSPKI(spki, algorithm)