node-jose
node-jose copied to clipboard
Getting this error: `helpers.nodeCrypto.getHashes is not a function` when trying to use node-jose in sveltekit.
Changelog has not been updated **since v 2.0.1** I see the **latest version is 2.2.0** Please update Changelog so that breaking changes are catalogued and we can upgrade to the...
I created this private key using node-jose, and then when I load it back into node jose using the `asKey` function, I get an error; ``` RangeError: Attempt to access...
I found that the api that node-jose exposed for create key store are all static, is there a way to create key store based on jwks endpoint?
After phone auth from firebase I got idToken from it that is a JWT as according to my R&D and I want to convert it into JWE but all my...
Occasionally while using the JWE.decrypt function call, I get the following error: ``` { message: 'no key found', stack: 'Error: no key found\n at processKey (/home/ubuntu/node_modules/node-jose/lib/jwe/decrypt.js:176:22)\n at ' } ```...
The brainpoolP256r1 curve is defined in [RFC 5639](https://datatracker.ietf.org/doc/html/rfc5639), and is a [recommended standard (PDF)](https://www.bsi.bund.de/SharedDocs/Downloads/EN/BSI/Publications/TechGuidelines/TR03111/BSI-TR-03111_V-2-1_pdf.pdf?__blob=publicationFile&v=1) by the German Ministry for Information Security. This curve is used in several of the German...
Using `node-jose 1.1.3`. According to the documentation, it should be possible to pass the `{allowEmbeddedKey: true}` option to the verifier constructor rather than in each `verify()` call: > Alternatively, a...
Am I mistaken, or is this not right? Affected version: 2.0.0 ```js async function test() { const payload = Uint8Array.from([0, 3, 4, 2]) const key = await jose.JWK.createKey('EC', 'P-256') const...
How are you, I'm having difficulty adding an expiration date to the created jwe token, I already have everything working, encrypting and decrypting with public and private keys, but adding...