Skip to main content
Module

x/jose/index.ts>CompactSign

"JSON Web Almost Everything" - JWA, JWS, JWE, JWT, JWK, JWKS with no dependencies using runtime's native crypto in Node.js, Browser, Cloudflare Workers, Electron, and Deno.
Extremely Popular
Go to Latest
class CompactSign
import { CompactSign } from "https://deno.land/x/jose@v4.8.3/index.ts";

The CompactSign class is a utility for creating Compact JWS strings.

Examples

Usage

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

console.log(jws)

Constructors

new
CompactSign(payload: Uint8Array)

Properties

private
_flattened: FlattenedSign

Methods

Sets the JWS Protected Header on the Sign object.

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

Signs and resolves the value of the Compact JWS string.