mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-11 02:58:02 -06:00
Windows: change cascade encryption naming format to reflex mathematical composition of the encryption algorithm, thus being more clear. For example AES(Twofish(Serpent)) instead of AES-Twofish-Serpent.
This commit is contained in:
@@ -511,7 +511,7 @@ BOOL TestSectorBufEncryption (PCRYPTO_INFO ci)
|
||||
if (!EAIsModeSupported (ci->ea, ci->mode))
|
||||
continue;
|
||||
|
||||
EAGetName (name, ci->ea);
|
||||
EAGetName (name, ci->ea, 0);
|
||||
|
||||
if (EAInit (ci->ea, key1, ci->ks) != ERR_SUCCESS)
|
||||
return FALSE;
|
||||
@@ -777,7 +777,7 @@ BOOL TestSectorBufEncryption (PCRYPTO_INFO ci)
|
||||
if (!EAIsModeSupported (ci->ea, ci->mode))
|
||||
continue;
|
||||
|
||||
EAGetName (name, ci->ea);
|
||||
EAGetName (name, ci->ea, 0);
|
||||
|
||||
if (EAInit (ci->ea, key1, ci->ks) != ERR_SUCCESS)
|
||||
return FALSE;
|
||||
|
||||
Reference in New Issue
Block a user