Back to Jose

Class: CompactEncrypt

docs/jwe/compact/encrypt/classes/CompactEncrypt.md

6.2.24.3 KB
Original Source

Class: CompactEncrypt

💗 Help the project

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.

The CompactEncrypt class is used to build and encrypt Compact JWE strings.

This class is exported (as a named export) from the main 'jose' module entry point as well as from its subpath export 'jose/jwe/compact/encrypt'.

Example

js
const jwe = await new jose.CompactEncrypt(
  new TextEncoder().encode('It’s a dangerous business, Frodo, going out your door.'),
)
  .setProtectedHeader({ alg: 'RSA-OAEP-256', enc: 'A256GCM' })
  .encrypt(publicKey)

console.log(jwe)

Constructors

Constructor

â–¸ new CompactEncrypt(plaintext): CompactEncrypt

CompactEncrypt constructor

Parameters

ParameterTypeDescription
plaintextUint8ArrayBinary representation of the plaintext to encrypt.

Returns

CompactEncrypt

Methods

encrypt()

â–¸ encrypt(key, options?): Promise<string>

Encrypts and resolves the value of the Compact JWE string.

Parameters

ParameterTypeDescription
keyUint8Array | CryptoKey | JWK | KeyObjectPublic Key or Secret to encrypt the JWE with. See Algorithm Key Requirements.
options?EncryptOptionsJWE Encryption options.

Returns

Promise<string>


setContentEncryptionKey()

â–¸ setContentEncryptionKey(cek): this

Sets a content encryption key to use, by default a random suitable one is generated for the JWE enc" (Encryption Algorithm) Header Parameter.

Parameters

ParameterTypeDescription
cekUint8ArrayJWE Content Encryption Key.

Returns

this

Deprecated

You should not use this method. It is only really intended for test and vector validation purposes.


setInitializationVector()

â–¸ setInitializationVector(iv): this

Sets the JWE Initialization Vector to use for content encryption, by default a random suitable one is generated for the JWE enc" (Encryption Algorithm) Header Parameter.

Parameters

ParameterTypeDescription
ivUint8ArrayJWE Initialization Vector.

Returns

this

Deprecated

You should not use this method. It is only really intended for test and vector validation purposes.


setKeyManagementParameters()

â–¸ setKeyManagementParameters(parameters): this

Sets the JWE Key Management parameters to be used when encrypting.

(ECDH-ES) Use of this method is needed for ECDH based algorithms to set the "apu" (Agreement PartyUInfo) or "apv" (Agreement PartyVInfo) parameters.

Parameters

ParameterTypeDescription
parametersJWEKeyManagementHeaderParametersJWE Key Management parameters.

Returns

this


setProtectedHeader()

â–¸ setProtectedHeader(protectedHeader): this

Sets the JWE Protected Header on the CompactEncrypt object.

Parameters

ParameterTypeDescription
protectedHeaderCompactJWEHeaderParametersJWE Protected Header object.

Returns

this