Files
klz-cables.com/.pnpm-store/v10/files/d9/5270a6105bffb718989402effba48b41112c6516ae48a77e38b2fcf0e80c3b20ba501ddc56be2bd45083cb4ef2d216468143fec629a283d2ebc8d35f28013d
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

22 lines
954 B
Plaintext

import type { KeyLike } from '../types';
export interface GenerateSecretOptions {
/**
* (Only effective in Web Crypto API runtimes) The value to use as
* {@link !SubtleCrypto.generateKey} `extractable` argument. Default is false.
*/
extractable?: boolean;
}
/**
* Generates a symmetric secret key for a given JWA algorithm identifier.
*
* Note: Under Web Crypto API runtime the secret key is generated with `extractable` set to `false`
* by default.
*
* This function is exported (as a named export) from the main `'jose'` module entry point as well
* as from its subpath export `'jose/generate/secret'`.
*
* @param alg JWA Algorithm Identifier to be used with the generated secret.
* @param options Additional options passed down to the secret generation.
*/
export declare function generateSecret<KeyLikeType extends KeyLike = KeyLike>(alg: string, options?: GenerateSecretOptions): Promise<KeyLikeType | Uint8Array>;