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

check_cek_length.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
import { JWEInvalid } from '../util/errors.ts'
const checkCekLength = (cek: Uint8Array, expected: number) => { const actual = cek.byteLength << 3 if (actual !== expected) { throw new JWEInvalid( `Invalid Content Encryption Key length. Expected ${expected} bits, got ${actual} bits`, ) }}
export default checkCekLength
jose

Version Info

Tagged at
a month ago