diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-01-03 22:57:24 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-01-03 23:54:09 +0100 |
commit | 55b3400afa1f94f9f7a4317750a15be6b45157a6 (patch) | |
tree | 24324cb043822b3daa7d2023ac246eacf24290b9 /src/Format/Tcformat.c | |
parent | 8f5fd67ff3ca2e68bc97e74ce6ae91931c92775f (diff) | |
download | VeraCrypt-55b3400afa1f94f9f7a4317750a15be6b45157a6.tar.gz VeraCrypt-55b3400afa1f94f9f7a4317750a15be6b45157a6.zip |
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.
Diffstat (limited to 'src/Format/Tcformat.c')
-rw-r--r-- | src/Format/Tcformat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Format/Tcformat.c b/src/Format/Tcformat.c index e694a176..d55cc064 100644 --- a/src/Format/Tcformat.c +++ b/src/Format/Tcformat.c @@ -1189,7 +1189,7 @@ void ComboSelChangeEA (HWND hwndDlg) int i, cnt = 0;
nIndex = SendMessage (GetDlgItem (hwndDlg, IDC_COMBO_BOX), CB_GETITEMDATA, nIndex, 0);
- EAGetName (name, nIndex);
+ EAGetName (name, nIndex, 0);
if (strcmp (name, "AES") == 0)
{
@@ -3723,7 +3723,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa for (ea = EAGetFirst (); ea != 0; ea = EAGetNext (ea))
{
if (EAIsFormatEnabled (ea))
- AddComboPair (GetDlgItem (hwndDlg, IDC_COMBO_BOX), EAGetName (buf, ea), ea);
+ AddComboPair (GetDlgItem (hwndDlg, IDC_COMBO_BOX), EAGetName (buf, ea, 1), ea);
}
SelectAlgo (GetDlgItem (hwndDlg, IDC_COMBO_BOX), &nVolumeEA);
@@ -4976,7 +4976,7 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa int nIndex = SendMessage (GetDlgItem (hCurPage, IDC_COMBO_BOX), CB_GETCURSEL, 0, 0);
nIndex = SendMessage (GetDlgItem (hCurPage, IDC_COMBO_BOX), CB_GETITEMDATA, nIndex, 0);
- EAGetName (name, nIndex);
+ EAGetName (name, nIndex, 0);
if (strcmp (name, "AES") == 0)
Applink ("aes", FALSE, "");
|