Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jose-node-esm-runtime

Package Overview
Dependencies
Maintainers
1
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jose-node-esm-runtime - npm Package Compare versions

Comparing version 3.15.4 to 3.15.5

5

dist/node/esm/jwks/remote.js

@@ -96,3 +96,3 @@ import parseJWK from '../jwk/parse.js';

if (cached[protectedHeader.alg] === undefined) {
const keyObject = (await parseJWK({ ...jwk, alg: protectedHeader.alg }));
const keyObject = await parseJWK({ ...jwk, alg: protectedHeader.alg });
if (keyObject.type !== 'public') {

@@ -128,6 +128,5 @@ throw new JWKSInvalid('JSON Web Key Set members must be public keys');

function createRemoteJWKSet(url, options) {
const set = new RemoteJWKSet(url, options);
return set.getKey.bind(set);
return RemoteJWKSet.prototype.getKey.bind(new RemoteJWKSet(url, options));
}
export { createRemoteJWKSet };
export default createRemoteJWKSet;

2

package.json
{
"name": "jose-node-esm-runtime",
"version": "3.15.4",
"version": "3.15.5",
"description": "(Node.JS ESM Runtime) 'JSON Web Almost Everything' - JWA, JWS, JWE, JWT, JWK with no dependencies",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc