/
var
/
www
/
greso.tech
/
server
/
nsm
/
node_modules
/
jose
/
dist
/
types
/
jwe
/
general
/
/var/www/greso.tech/server/nsm/node_modules/jose/dist/types/jwe/general
mkdir
upload
Name
Size
Mode
Actions
decrypt.d.ts
1254
0644
edit
dl
rm
encrypt.d.ts
2464
0644
edit
dl
rm
Edit:
/var/www/greso.tech/server/nsm/node_modules/jose/dist/types/jwe/general/encrypt.d.ts
(2464B)
import type { KeyLike, GeneralJWE, JWEHeaderParameters, CritOption, DeflateOption } from '../../types'; export interface Recipient { /** * Sets the JWE Per-Recipient Unprotected Header on the Recipient object. * * @param unprotectedHeader JWE Per-Recipient Unprotected Header. */ setUnprotectedHeader(unprotectedHeader: JWEHeaderParameters): Recipient; /** A shorthand for calling addRecipient() on the enclosing GeneralEncrypt instance */ addRecipient(...args: Parameters<GeneralEncrypt['addRecipient']>): Recipient; /** A shorthand for calling encrypt() on the enclosing GeneralEncrypt instance */ encrypt(...args: Parameters<GeneralEncrypt['encrypt']>): Promise<GeneralJWE>; /** Returns the enclosing GeneralEncrypt */ done(): GeneralEncrypt; } /** * The GeneralEncrypt class is used to build and encrypt General JWE objects. * */ export declare class GeneralEncrypt { private _plaintext; private _recipients; private _protectedHeader; private _unprotectedHeader; private _aad; /** @param plaintext Binary representation of the plaintext to encrypt. */ constructor(plaintext: Uint8Array); /** * Adds an additional recipient for the General JWE object. * * @param key Public Key or Secret to encrypt the Content Encryption Key for the recipient with. * See {@link https://github.com/panva/jose/issues/210#jwe-alg Algorithm Key Requirements}. * @param options JWE Encryption options. */ addRecipient(key: KeyLike | Uint8Array, options?: CritOption): Recipient; /** * Sets the JWE Protected Header on the GeneralEncrypt object. * * @param protectedHeader JWE Protected Header object. */ setProtectedHeader(protectedHeader: JWEHeaderParameters): this; /** * Sets the JWE Shared Unprotected Header on the GeneralEncrypt object. * * @param sharedUnprotectedHeader JWE Shared Unprotected Header object. */ setSharedUnprotectedHeader(sharedUnprotectedHeader: JWEHeaderParameters): this; /** * Sets the Additional Authenticated Data on the GeneralEncrypt object. * * @param aad Additional Authenticated Data. */ setAdditionalAuthenticatedData(aad: Uint8Array): this; /** * Encrypts and resolves the value of the General JWE object. * * @param options JWE Encryption options. */ encrypt(options?: DeflateOption): Promise<GeneralJWE>; }
Save
cmd:
run