astro-ghostcms/.pnpm-store/v3/files/51/06d6e1092b29f0f90eabeb539c2...

7 lines
164 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { getCiphers } from 'node:crypto';
let ciphers;
export default (algorithm) => {
ciphers ||= new Set(getCiphers());
return ciphers.has(algorithm);
};