Skip to main content
Module

x/jose/index.ts>FlattenedSign

"JSON Web Almost Everything" - JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes.
Extremely Popular
Go to Latest
class FlattenedSign
import { FlattenedSign } from "https://deno.land/x/jose@v4.14.4/index.ts";

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.