@gaonengwww/jose
Version:
JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes
6 lines (3 loc) • 314 B
TypeScript
import { CryptoKey, JWEHeaderParameters, DecryptOptions } from '../types.d.js';
declare const _default: (alg: string, key: CryptoKey | Uint8Array, encryptedKey: Uint8Array | undefined, joseHeader: JWEHeaderParameters, options?: DecryptOptions) => Promise<CryptoKey | Uint8Array>;
export { _default as default };