8 lines
249 B
JavaScript
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');
|
|
}
|
|
}
|