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.12.1/index.ts";

The FlattenedSign class is a utility for creating Flattened JWS objects.

Examples

Usage

const jws = await new jose.FlattenedSign(
  new TextEncoder().encode('It’s a dangerous business, Frodo, going out your door.'),
)
  .setProtectedHeader({ alg: 'ES256' })
  .sign(privateKey)

console.log(jws)

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.