proxy-oidc/node_modules/jose/dist/webapi/lib/check_iv_length.js
2025-12-03 20:54:35 +01:00

8 lines
249 B
JavaScript

import { JWEInvalid } from '../util/errors.js';
import { bitLength } from './iv.js';
export function checkIvLength(enc, iv) {
if (iv.length << 3 !== bitLength(enc)) {
throw new JWEInvalid('Invalid Initialization Vector length');
}
}