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.
▸ calculateJwkThumbprintUri(jwk
, digestAlgorithm?
): Promise
<string
>
Calculates a JSON Web Key (JWK) Thumbprint URI
Name | Type | Description |
---|---|---|
jwk |
JWK |
JSON Web Key. |
digestAlgorithm? |
"sha256" | "sha384" | "sha512" |
Digest Algorithm to use for calculating the thumbprint. Default is "sha256". |
Promise
<string
>
Example
const thumbprintUri = await jose.calculateJwkThumbprintUri({
kty: 'EC',
crv: 'P-256',
x: 'jJ6Flys3zK9jUhnOHf6G49Dyp5hah6CNP84-gY-n9eo',
y: 'nhI6iD5eFXgBTLt_1p3aip-5VbZeMhxeFSpjfEAf7Ww',
})
console.log(thumbprintUri)
// 'urn:ietf:params:oauth:jwk-thumbprint:sha-256:w9eYdC6_s_tLQ8lH6PUpc0mddazaqtPgeC2IgWDiqY8'
See