Skip to main content
Latest
class jose.FlattenedSign
import { jose } from "https://deno.land/x/jwe_cookie_map@v1.0.1/src/deps.ts";
const { FlattenedSign } = jose;

The FlattenedSign class is used to build and sign Flattened JWS objects.

Constructors

new
FlattenedSign(payload: Uint8Array)

Properties

private
_payload: Uint8Array
private
_protectedHeader: JWSHeaderParameters
private
_unprotectedHeader: JWSHeaderParameters

Methods

Sets the JWS Protected Header on the FlattenedSign object.

Sets the JWS Unprotected Header on the FlattenedSign object.

sign(key: KeyLike | Uint8Array, options?: SignOptions): Promise<FlattenedJWS>

Signs and resolves the value of the Flattened JWS object.