Remove unnecessary IV adaptation

This commit is contained in:
Andy Wang 2019-10-01 22:54:21 +01:00
parent 458307f5ed
commit 7f6d8bffe3
1 changed files with 1 additions and 3 deletions

View File

@ -79,9 +79,7 @@ Blowfish uses a key length of 8 bytes (64 bits).`);
input = Utils.convertToByteString(input, inputType);
const decipher = Blowfish.createDecipher(key, mode);
decipher.start({
iv: iv.length === 0 ? "" : iv,
});
decipher.start({iv: iv});
decipher.update(forge.util.createBuffer(input));
const result = decipher.finish();