astro-ghostcms/.pnpm-store/v3/files/33/735effdba103a054b20e80b4619...

9 lines
276 B
Plaintext

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;