Skip to content

Commit

Permalink
Add node: prefix
Browse files Browse the repository at this point in the history
* Add prefix to nodejs dependencies to support running in Node and Cloudflare environments
https://developers.cloudflare.com/workers/runtime-apis/nodejs/
  • Loading branch information
jordanfinners committed May 26, 2024
1 parent bc28861 commit bee0861
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const isNumber = require('lodash.isnumber');
const isPlainObject = require('lodash.isplainobject');
const isString = require('lodash.isstring');
const once = require('lodash.once');
const { KeyObject, createSecretKey, createPrivateKey } = require('crypto')
const { KeyObject, createSecretKey, createPrivateKey } = require('node:crypto')

const SUPPORTED_ALGS = ['RS256', 'RS384', 'RS512', 'ES256', 'ES384', 'ES512', 'HS256', 'HS384', 'HS512', 'none'];
if (PS_SUPPORTED) {
Expand Down
2 changes: 1 addition & 1 deletion verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const timespan = require('./lib/timespan');
const validateAsymmetricKey = require('./lib/validateAsymmetricKey');
const PS_SUPPORTED = require('./lib/psSupported');
const jws = require('jws');
const {KeyObject, createSecretKey, createPublicKey} = require("crypto");
const {KeyObject, createSecretKey, createPublicKey} = require("node:crypto");

const PUB_KEY_ALGS = ['RS256', 'RS384', 'RS512'];
const EC_KEY_ALGS = ['ES256', 'ES384', 'ES512'];
Expand Down

0 comments on commit bee0861

Please sign in to comment.