Files
Webklar.com/node_modules/jose/dist/browser/lib/check_iv_length.js
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

9 lines
276 B
JavaScript

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