Fix #930 by allowing variable key sizes
This commit is contained in:
parent
f7be8d720b
commit
c689cf7f13
@ -70,10 +70,14 @@ class BlowfishDecrypt extends Operation {
|
|||||||
inputType = args[3],
|
inputType = args[3],
|
||||||
outputType = args[4];
|
outputType = args[4];
|
||||||
|
|
||||||
if (key.length !== 8) {
|
if (key.length < 4 || key.length > 56) {
|
||||||
throw new OperationError(`Invalid key length: ${key.length} bytes
|
throw new OperationError(`Invalid key length: ${key.length} bytes
|
||||||
|
|
||||||
Blowfish uses a key length of 8 bytes (64 bits).`);
|
Blowfish's key length needs to between 4 and 56 bytes (32-448 bits).`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (iv.length !== 8) {
|
||||||
|
throw new OperationError(`Invalid IV length: ${iv.length} bytes. Expected 8 bytes`);
|
||||||
}
|
}
|
||||||
|
|
||||||
input = Utils.convertToByteString(input, inputType);
|
input = Utils.convertToByteString(input, inputType);
|
||||||
|
@ -70,10 +70,14 @@ class BlowfishEncrypt extends Operation {
|
|||||||
inputType = args[3],
|
inputType = args[3],
|
||||||
outputType = args[4];
|
outputType = args[4];
|
||||||
|
|
||||||
if (key.length !== 8) {
|
if (key.length < 4 || key.length > 56) {
|
||||||
throw new OperationError(`Invalid key length: ${key.length} bytes
|
throw new OperationError(`Invalid key length: ${key.length} bytes
|
||||||
|
|
||||||
|
Blowfish's key length needs to between 4 and 56 bytes (32-448 bits).`);
|
||||||
|
}
|
||||||
|
|
||||||
Blowfish uses a key length of 8 bytes (64 bits).`);
|
if (iv.length !== 8) {
|
||||||
|
throw new OperationError(`Invalid IV length: ${iv.length} bytes. Expected 8 bytes`);
|
||||||
}
|
}
|
||||||
|
|
||||||
input = Utils.convertToByteString(input, inputType);
|
input = Utils.convertToByteString(input, inputType);
|
||||||
|
Loading…
Reference in New Issue
Block a user