NeahNew/node_modules/jose/dist/browser/lib/check_iv_length.js
2025-05-03 14:17:46 +02: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;