jose/docs/classes/jwt_encrypt.encryptjwt.md
2021-03-30 18:02:14 +02:00

11 KiB

Class: EncryptJWT

jwt/encrypt.EncryptJWT

The EncryptJWT class is a utility for creating Compact JWE formatted JWT strings.

example

// ESM import
import { EncryptJWT } from 'jose/jwt/encrypt'

example

// CJS import
const { EncryptJWT } = require('jose/jwt/encrypt')

example

// usage
const secretKey = Uint8Array.from([
  206, 203, 53, 165, 235, 214, 153, 188,
  248, 225,  1, 132, 105, 204,  75,  42,
  186, 185, 24, 223, 136,  66, 116,  59,
  183, 155, 52,  52, 101, 167, 201,  85
])
const jwt = await new EncryptJWT({ 'urn:example:claim': true })
  .setProtectedHeader({ alg: 'dir', enc: 'A256GCM' })
  .setIssuedAt()
  .setIssuer('urn:example:issuer')
  .setAudience('urn:example:audience')
  .setExpirationTime('2h')
  .encrypt(secretKey)

console.log(jwt)

Hierarchy

  • ProduceJWT

    EncryptJWT

Table of contents

Constructors

Methods

Constructors

constructor

+ new EncryptJWT(payload: JWTPayload): EncryptJWT

Parameters:

Name Type Description
payload JWTPayload The JWT Claims Set object.

Returns: EncryptJWT

Inherited from: void

Defined in: lib/jwt_producer.ts:10

Methods

encrypt

encrypt(key: KeyLike, options?: EncryptOptions): Promise<string>

Encrypts and returns the JWT.

Parameters:

Name Type Description
key KeyLike Public Key or Secret to encrypt the JWT with.
options? EncryptOptions JWE Encryption options.

Returns: Promise<string>

Defined in: jwt/encrypt.ts:160


replicateAudienceAsHeader

replicateAudienceAsHeader(): EncryptJWT

Replicates the "aud" (Audience) Claim as a JWE Protected Header Parameter as per RFC7519#section-5.3.

Returns: EncryptJWT

Defined in: jwt/encrypt.ts:149


replicateIssuerAsHeader

replicateIssuerAsHeader(): EncryptJWT

Replicates the "iss" (Issuer) Claim as a JWE Protected Header Parameter as per RFC7519#section-5.3.

Returns: EncryptJWT

Defined in: jwt/encrypt.ts:131


replicateSubjectAsHeader

replicateSubjectAsHeader(): EncryptJWT

Replicates the "sub" (Subject) Claim as a JWE Protected Header Parameter as per RFC7519#section-5.3.

Returns: EncryptJWT

Defined in: jwt/encrypt.ts:140


setAudience

setAudience(audience: string | string[]): EncryptJWT

Set "aud" (Audience) Claim.

Parameters:

Name Type Description
audience string | string[] "aud" (Audience) Claim value to set on the JWT Claims Set.

Returns: EncryptJWT

Inherited from: void

Defined in: lib/jwt_producer.ts:47


setContentEncryptionKey

setContentEncryptionKey(cek: Uint8Array): EncryptJWT

Sets a content encryption key to use, by default a random suitable one is generated for the JWE enc" (Encryption Algorithm) Header Parameter. You do not need to invoke this method, it is only really intended for test and vector validation purposes.

Parameters:

Name Type Description
cek Uint8Array JWE Content Encryption Key.

Returns: EncryptJWT

Defined in: jwt/encrypt.ts:103


setExpirationTime

setExpirationTime(input: string | number): EncryptJWT

Set "exp" (Expiration Time) Claim.

Parameters:

Name Type Description
input string | number "exp" (Expiration Time) Claim value to set on the JWT Claims Set. When number is passed that is used as a value, when string is passed it is resolved to a time span and added to the current timestamp.

Returns: EncryptJWT

Inherited from: void

Defined in: lib/jwt_producer.ts:85


setInitializationVector

setInitializationVector(iv: Uint8Array): EncryptJWT

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. You do not need to invoke this method, it is only really intended for test and vector validation purposes.

Parameters:

Name Type Description
iv Uint8Array JWE Initialization Vector.

Returns: EncryptJWT

Defined in: jwt/encrypt.ts:119


setIssuedAt

setIssuedAt(input?: number): EncryptJWT

Set "iat" (Issued At) Claim.

Parameters:

Name Type Description
input? number "iat" (Issued At) Claim value to set on the JWT Claims Set. Default is current timestamp.

Returns: EncryptJWT

Inherited from: void

Defined in: lib/jwt_producer.ts:100


setIssuer

setIssuer(issuer: string): EncryptJWT

Set "iss" (Issuer) Claim.

Parameters:

Name Type Description
issuer string "Issuer" Claim value to set on the JWT Claims Set.

Returns: EncryptJWT

Inherited from: void

Defined in: lib/jwt_producer.ts:27


setJti

setJti(jwtId: string): EncryptJWT

Set "jti" (JWT ID) Claim.

Parameters:

Name Type Description
jwtId string "jti" (JWT ID) Claim value to set on the JWT Claims Set.

Returns: EncryptJWT

Inherited from: void

Defined in: lib/jwt_producer.ts:57


setKeyManagementParameters

setKeyManagementParameters(parameters: JWEKeyManagementHeaderParameters): EncryptJWT

Sets the JWE Key Management parameters to be used when encrypting. Use of this is method is really only needed for ECDH-ES based algorithms when utilizing the Agreement PartyUInfo or Agreement PartyVInfo parameters. Other parameters will always be randomly generated when needed and missing.

Parameters:

Name Type Description
parameters JWEKeyManagementHeaderParameters JWE Key Management parameters.

Returns: EncryptJWT

Defined in: jwt/encrypt.ts:87


setNotBefore

setNotBefore(input: string | number): EncryptJWT

Set "nbf" (Not Before) Claim.

Parameters:

Name Type Description
input string | number "nbf" (Not Before) Claim value to set on the JWT Claims Set. When number is passed that is used as a value, when string is passed it is resolved to a time span and added to the current timestamp.

Returns: EncryptJWT

Inherited from: void

Defined in: lib/jwt_producer.ts:69


setProtectedHeader

setProtectedHeader(protectedHeader: JWEHeaderParameters): EncryptJWT

Sets the JWE Protected Header on the EncryptJWT object.

Parameters:

Name Type Description
protectedHeader JWEHeaderParameters JWE Protected Header. Must contain an "alg" (JWE Algorithm) and "enc" (JWE Encryption Algorithm) properties.

Returns: EncryptJWT

Defined in: jwt/encrypt.ts:71


setSubject

setSubject(subject: string): EncryptJWT

Set "sub" (Subject) Claim.

Parameters:

Name Type Description
subject string "sub" (Subject) Claim value to set on the JWT Claims Set.

Returns: EncryptJWT

Inherited from: void

Defined in: lib/jwt_producer.ts:37