diff options
Diffstat (limited to 'src/Volume/Cipher.cpp')
-rw-r--r-- | src/Volume/Cipher.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Volume/Cipher.cpp b/src/Volume/Cipher.cpp index 5708e6e0..1a5a1295 100644 --- a/src/Volume/Cipher.cpp +++ b/src/Volume/Cipher.cpp @@ -211,7 +211,7 @@ namespace VeraCrypt void CipherSerpent::SetCipherKey (const byte *key) { - serpent_set_key (key, static_cast<int> (GetKeySize ()), ScheduledKey); + serpent_set_key (key, ScheduledKey); } @@ -233,7 +233,7 @@ namespace VeraCrypt void CipherTwofish::SetCipherKey (const byte *key) { - twofish_set_key ((TwofishInstance *) ScheduledKey.Ptr(), (unsigned int *) key, static_cast<int> (GetKeySize ()) * 8); + twofish_set_key ((TwofishInstance *) ScheduledKey.Ptr(), (unsigned int *) key); } |