deno.land / x / jose@v5.2.4 / runtime / check_key_length.ts

check_key_length.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
export default (alg: string, key: CryptoKey) => { if (alg.startsWith('RS') || alg.startsWith('PS')) { const { modulusLength } = <RsaKeyAlgorithm>key.algorithm if (typeof modulusLength !== 'number' || modulusLength < 2048) { throw new TypeError(`${alg} requires key modulusLength to be 2048 bits or larger`) } }}
jose

Version Info

Tagged at
a month ago