VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Volume/Volume.make
AgeCommit message (Expand)AuthorFilesLines
2024-11-10Linux: Fix build error following SHA intrinsic support changesMounir IDRASSI1-0/+3
2024-11-10Add support for SHA-256 x86 instrinsic for enhance performance of PBKDF2-HMAC...Mounir IDRASSI1-0/+5
2024-06-19Linux: Fix assembly files not built on LinuxMounir IDRASSI1-1/+1
2024-06-16Improve and simplify macOS builds (#1276)Deniz Türkoglu1-1/+5
2023-11-19Linux/MacOSX: put entries at line start and use tabs instead of spacesMounir IDRASSI1-92/+92
2023-11-13wolfCrypt as crypto backend for VeraCrypt (#1227)lealem471-89/+103
2023-06-29EMV keyfile support: Overall code improvements and bug fixesMounir IDRASSI1-1/+8
2023-06-28Add EMV functionality (#1080)mmauv1-0/+4
2022-03-08Implement support of Blake2s-256 hash algorithm and remove deprecated algorit...Mounir IDRASSI1-2/+10
2022-02-13Linux/FreeBSD: Enable building without AESNI support by setting environment v...Mounir IDRASSI1-0/+4
2019-10-24Linux/MacOSX: Better approach to avoid that jitterentropy code is optimized b...Mounir IDRASSI1-1/+3
2019-10-23Linux/MacOSX: Add missing JitterEntropy implementationMounir IDRASSI1-0/+1
2017-11-27SIMD speed optimization for Kuznyechik cipher implementation (up to 2x speedu...Mounir IDRASSI1-0/+1
2017-06-27MacOSX: various changes for assembly files build. Don't use 32-bit assembly c...Mounir IDRASSI1-14/+14
2017-06-23Update IDRIX copyright yearMounir IDRASSI1-1/+1
2017-06-23Linux/MacOSX: use yasm instead of nasm for compiling all assembly files.Mounir IDRASSI1-15/+15
2017-06-23Crypto: Add optimized SHA-512 and SHA-256 assembly implementations for x86_64...Mounir IDRASSI1-0/+44
2017-06-21Crypto: Add optimized Camellia assembly implementation for x86_64 based on wo...Mounir IDRASSI1-0/+10
2016-12-26MacOSX: use Yasm to build Twofish 64-bit assembly code on OSX since native co...Mounir IDRASSI1-1/+1
2016-12-07Crypto: Add optimized Twofish assembly implementation for x86_64.Mounir IDRASSI1-0/+5
2016-10-17Crypto: Use SIMD optimized Serpent implementation from Botan. 2.5x speed gain...Mounir IDRASSI1-1/+2
2016-08-15Windows: Add support for Streebog (hash) and kuznyechik (encryption)Mounir IDRASSI1-0/+3
2016-06-19Linux/MacOSX: Solve compilation error linked to Camellia cipher addition.Mounir IDRASSI1-0/+1
2016-05-10Remove trailing whitespaceDavid Foerster1-1/+1
2016-01-20Copyright: update dates to include 2016.Mounir IDRASSI1-1/+1
2015-12-31Cryptography: Optimize Whirlpool implementation by using public domain assemb...Mounir IDRASSI1-0/+1
2015-08-06Update license information to reflect the use of a dual license Apache 2.0 an...Mounir IDRASSI1-4/+8
2014-11-08MacOSX : Correct issue of compiling assembly files in both 32-bit and 64-bit ...Mounir IDRASSI1-4/+15
2014-11-08Correct Linux compilation after removing legacy cryptographic code.Mounir IDRASSI1-2/+0
2014-11-08Remove remaining legacy cryptographic algorithms that are never used by VeraC...Mounir IDRASSI1-4/+0
2014-11-08Add TrueCrypt 7.1a MacOSX/Linux specific source files.Mounir IDRASSI1-0/+62
lass="n">choiceTextBold) { if (!groupBoxText.empty()) { OuterChoicesSizer->Remove (ChoicesSizer); ChoicesSizer = new wxStaticBoxSizer (wxVERTICAL, this, groupBoxText); OuterChoicesSizer->Add (ChoicesSizer, 0, wxEXPAND, 5); } } void AddChoice (ChoiceType choice, const wxString &choiceText, const wxString &infoText = wxEmptyString, const wchar_t *infoLinkId = nullptr, const wxString &infoLinkText = wxEmptyString) { assert (RadioButtonMap.find (choice) == RadioButtonMap.end()); wxRadioButton *radioButton = new wxRadioButton (this, wxID_ANY, choiceText); if (RadioButtonMap.empty()) radioButton->SetValue (true); RadioButtonMap[choice] = radioButton; if (ChoiceTextBold) { wxFont buttonFont = radioButton->GetFont(); buttonFont.SetWeight (wxFONTWEIGHT_BOLD); radioButton->SetFont (buttonFont); } ChoicesSizer->Add (radioButton, 0, wxALL, 5); wxBoxSizer *infoSizer = new wxBoxSizer (wxVERTICAL); wxStaticText *infoStaticText = new wxStaticText (this, wxID_ANY, infoText, wxDefaultPosition, wxDefaultSize, 0); ChoiceInfoTexts.push_back (infoStaticText); infoSizer->Add (infoStaticText, 0, wxALL, 5); ChoicesSizer->Add (infoSizer, 0, wxEXPAND | wxLEFT, Gui->GetCharWidth (this) * 3); if (infoLinkId) { wxHyperlinkCtrl *hyperlink = Gui->CreateHyperlink (this, infoLinkId, infoLinkText); infoSizer->Add (hyperlink, 0, wxALL, 5); hyperlink->Connect (wxEVT_COMMAND_HYPERLINK, wxHyperlinkEventHandler (SingleChoiceWizardPage::OnChoiceHyperlinkClick), nullptr, this); } ChoicesSizer->Add (1, Gui->GetCharHeight (this) * 1, 0, wxEXPAND, 5); } ChoiceType GetSelection () const { typedef pair <ChoiceType, wxRadioButton*> MapPair; foreach (MapPair p, RadioButtonMap) { if (p.second->GetValue()) return p.first; } throw NoItemSelected (SRC_POS); } bool IsValid () { return true; } void SetMaxStaticTextWidth (int width) { InfoStaticText->Wrap (width); foreach (wxStaticText *infoText, ChoiceInfoTexts) infoText->Wrap (width - Gui->GetCharWidth (this) * 3); } void SetPageText (const wxString &text) { InfoStaticText->SetLabel (text); } void SetSelection (ChoiceType choice) { RadioButtonMap[choice]->SetValue (true); } protected: void OnChoiceHyperlinkClick (wxHyperlinkEvent &event) { Gui->OpenHomepageLink (this, event.GetURL()); } bool ChoiceTextBold; list <wxStaticText*> ChoiceInfoTexts; map <ChoiceType, wxRadioButton*> RadioButtonMap; }; } #endif // TC_HEADER_Main_Forms_SingleChoiceWizardPage