astro-ghostcms/.pnpm-store/v3/files/a7/5bbb81f37f7e0eae75fc39b6358...

7 lines
257 B
Plaintext

export default (key, alg) => {
const { modulusLength } = key.asymmetricKeyDetails;
if (typeof modulusLength !== 'number' || modulusLength < 2048) {
throw new TypeError(`${alg} requires key modulusLength to be 2048 bits or larger`);
}
};