LookAtMySuitBot/js/node_modules/jose/dist/node/esm/runtime/ciphers.js

7 lines
170 B
JavaScript
Raw Normal View History

2023-12-24 20:08:39 -05:00
import { getCiphers } from 'crypto';
let ciphers;
export default (algorithm) => {
ciphers || (ciphers = new Set(getCiphers()));
return ciphers.has(algorithm);
};