Skip to main content
Module

x/jose/index.ts>importJWK

JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes.
Extremely Popular
Go to Latest
function importJWK
import { importJWK } from "https://deno.land/x/jose@v5.2.4/index.ts";

Imports a JWK to a runtime-specific key representation (KeyLike). Either the JWK "alg" (Algorithm) Parameter, or the optional "alg" argument, must be present.

Note: When the runtime is using Web Cryptography API the jwk parameters "use", "key_ops", and "ext" are also used in the resulting CryptoKey.

Type Parameters

optional
KeyLikeType extends KeyLike = KeyLike

Parameters

jwk: JWK

JSON Web Key.

optional
alg: string

(Only effective in Web Crypto API runtimes) JSON Web Algorithm identifier to be used with the imported key. Default is the "alg" property on the JWK, its presence is only enforced in Web Crypto API runtimes. See Algorithm Key Requirements.

Returns

Promise<KeyLikeType | Uint8Array>