mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2026-06-09 22:36:59 -05:00
Initial support of SM4 cipher for normal volumes
This commit is contained in:
@@ -100,6 +100,8 @@ namespace VeraCrypt
|
||||
EncryptionAlgorithmStaticText->SetLabel (LangString["CAMELLIA_HELP"]);
|
||||
else if (typeid (*ea) == typeid (Kuznyechik))
|
||||
EncryptionAlgorithmStaticText->SetLabel (LangString["KUZNYECHIK_HELP"]);
|
||||
else if (typeid (*ea) == typeid (SM4))
|
||||
EncryptionAlgorithmStaticText->SetLabel (LangString["SM4_HELP"]);
|
||||
else
|
||||
EncryptionAlgorithmStaticText->SetLabel (L"");
|
||||
}
|
||||
|
||||
@@ -1291,6 +1291,10 @@ namespace VeraCrypt
|
||||
{
|
||||
url = L"Kuznyechik.html";
|
||||
}
|
||||
else if (linkId == L"sm4")
|
||||
{
|
||||
url = L"SM4.html";
|
||||
}
|
||||
else if (linkId == L"cascades")
|
||||
{
|
||||
url = L"Cascades.html";
|
||||
|
||||
Reference in New Issue
Block a user