@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) • 315 B
text/typescript
import { CryptoKey, JWEHeaderParameters, DecryptOptions } from '../types.d.cjs';
declare const _default: (alg: string, key: CryptoKey | Uint8Array, encryptedKey: Uint8Array | undefined, joseHeader: JWEHeaderParameters, options?: DecryptOptions) => Promise<CryptoKey | Uint8Array>;
export { _default as default };