import { getWebCrypto } from "./getWebCrypto.ts"; export async function importKey(opts: { keyData: JsonWebKey; algorithm: AlgorithmIdentifier | RsaHashedImportParams | EcKeyImportParams; }): Promise { const WebCrypto = await getWebCrypto(); const { keyData, algorithm } = opts; return WebCrypto.subtle.importKey("jwk", keyData, algorithm, false, [ "verify", ]); }