DES Encrypt/Decrypt - checks length of IV string
Checks the length of IV string when encrypting. DES encrypt/decrypt test swas updated to use utf8 instead of HEX.
This commit is contained in:
parent
3472484601
commit
3e93580aa4
@ -73,6 +73,11 @@ class DESDecrypt extends Operation {
|
||||
DES uses a key length of 8 bytes (64 bits).
|
||||
Triple DES uses a key length of 24 bytes (192 bits).`);
|
||||
}
|
||||
if (iv.length !== 8) {
|
||||
throw new OperationError(`Invalid IV length: ${iv.length} bytes
|
||||
|
||||
DES uses an IV length of 8 bytes (64 bits).`);
|
||||
}
|
||||
|
||||
input = Utils.convertToByteString(input, inputType);
|
||||
|
||||
|
@ -73,6 +73,11 @@ class DESEncrypt extends Operation {
|
||||
DES uses a key length of 8 bytes (64 bits).
|
||||
Triple DES uses a key length of 24 bytes (192 bits).`);
|
||||
}
|
||||
if (iv.length !== 8) {
|
||||
throw new OperationError(`Invalid IV length: ${iv.length} bytes
|
||||
|
||||
DES uses an IV length of 8 bytes (64 bits).`);
|
||||
}
|
||||
|
||||
input = Utils.convertToByteString(input, inputType);
|
||||
|
||||
|
@ -400,7 +400,7 @@ color: white;
|
||||
},
|
||||
iv: {
|
||||
string: "threetwo",
|
||||
option: "Hex",
|
||||
option: "utf8",
|
||||
},
|
||||
mode: "ECB",
|
||||
});
|
||||
@ -415,7 +415,7 @@ color: white;
|
||||
},
|
||||
iv: {
|
||||
string: "threetwo",
|
||||
option: "Hex",
|
||||
option: "utf8",
|
||||
},
|
||||
mode: "ECB",
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user