Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.29 KB

jwk_thumbprint.calculateJwkThumbprint.md

File metadata and controls

40 lines (26 loc) · 1.29 KB

Function: calculateJwkThumbprint

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.


calculateJwkThumbprint(jwk, digestAlgorithm?): Promise<string>

Calculates a base64url-encoded JSON Web Key (JWK) Thumbprint

Parameters

Name Type Description
jwk JWK JSON Web Key.
digestAlgorithm? "sha256" | "sha384" | "sha512" Digest Algorithm to use for calculating the thumbprint. Default is "sha256".

Returns

Promise<string>

Example

const thumbprint = await jose.calculateJwkThumbprint({
  kty: 'EC',
  crv: 'P-256',
  x: 'jJ6Flys3zK9jUhnOHf6G49Dyp5hah6CNP84-gY-n9eo',
  y: 'nhI6iD5eFXgBTLt_1p3aip-5VbZeMhxeFSpjfEAf7Ww',
})

console.log(thumbprint)
// 'w9eYdC6_s_tLQ8lH6PUpc0mddazaqtPgeC2IgWDiqY8'

See

RFC7638