/* Copyright (c) 2008 TrueCrypt Developers Association. All rights reserved. Governed by the TrueCrypt License 3.0 the full text of which is contained in the file License.txt included in TrueCrypt binary and source code distribution packages. */ #include "VolumePasswordCache.h" namespace VeraCrypt { CachedPasswordList VolumePasswordCache::GetPasswords () { CachedPasswordList passwords; foreach_ref (const VolumePassword &password, CachedPasswords) passwords.push_back (make_shared (VolumePassword (password))); return passwords; } void VolumePasswordCache::Store (const VolumePassword &newPassword) { CachedPasswordList::iterator iter = CachedPasswords.begin(); foreach_ref (const VolumePassword &password, CachedPasswords) { if (newPassword == password) { CachedPasswords.erase (iter); break; } iter++; } CachedPasswords.push_front (make_shared (VolumePassword (newPassword))); if (CachedPasswords.size() > Capacity) CachedPasswords.pop_back(); } CachedPasswordList VolumePasswordCache::CachedPasswords; }
  • Documentation
  • Donate
  • Forums
  • aboutsummaryrefslogtreecommitdiff
    blob: 4f329d2f647e2bf9f8826cf10a80168d5eeb48c1 (plain)
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    
    /*
     Copyright (c) 2008 TrueCrypt Developers Association. All rights reserved.
    
     Governed by the TrueCrypt License 3.0 the full text of which is contained in
     the file License.txt included in TrueCrypt binary and source code distribution
     packages.
    */
    
    #include "System.h"
    #include "Main/GraphicUserInterface.h"
    #include "KeyfilesPanel.h"
    #include "SecurityTokenKeyfilesDialog.h"
    
    namespace VeraCrypt
    {
    	KeyfilesPanel::KeyfilesPanel (wxWindow* parent, shared_ptr <KeyfileList> keyfiles)
    		: KeyfilesPanelBase (parent)
    	{
    		KeyfilesListCtrl->InsertColumn (0, LangString["KEYFILE"], wxLIST_FORMAT_LEFT, 1);
    		Gui->SetListCtrlHeight (KeyfilesListCtrl, 10);
    
    		Layout();
    		Fit();
    
    		if (keyfiles)
    		{
    			foreach_ref (const Keyfile &k, *keyfiles)
    			{
    				vector <wstring> fields;
    				fields.push_back (FilesystemPath (k));
    				Gui->AppendToListCtrl (KeyfilesListCtrl, fields);
    			}
    		}
    
    		class FileDropTarget : public wxFileDropTarget
    		{
    		public:
    			FileDropTarget (KeyfilesPanel *panel) : Panel (panel) { }
    
    			wxDragResult OnDragOver (wxCoord x, wxCoord y, wxDragResult def)
    			{
    				return wxDragLink;
    			}
    
    			bool OnDropFiles (wxCoord x, wxCoord y, const wxArrayString &filenames)
    			{
    				foreach (const wxString &f, filenames)
    					Panel->AddKeyfile (make_shared <Keyfile> (wstring (f)));
    				return true;
    			}
    
    		protected:
    			KeyfilesPanel *Panel;
    		};
    
    		SetDropTarget (new FileDropTarget (this));
    		KeyfilesListCtrl->SetDropTarget (new FileDropTarget (this));
    #ifdef TC_MACOSX
    		foreach (wxWindow *c, GetChildren())
    			c->SetDropTarget (new FileDropTarget (this));
    #endif
    
    		UpdateButtons();
    	}
    
    	void KeyfilesPanel::AddKeyfile (shared_ptr <Keyfile> keyfile)
    	{
    		vector <wstring> fields;
    		fields.push_back (FilesystemPath (*keyfile));
    		Gui->AppendToListCtrl (KeyfilesListCtrl, fields);
    		UpdateButtons();
    	}
    
    	shared_ptr <KeyfileList> KeyfilesPanel::GetKeyfiles () const
    	{
    		make_shared_auto (KeyfileList, keyfiles);
    
    		for (long i = 0; i < KeyfilesListCtrl->GetItemCount(); i++)
    			keyfiles->push_back (make_shared <Keyfile> (wstring (KeyfilesListCtrl->GetItemText (i))));
    
    		return keyfiles;
    	}
    	
    	void KeyfilesPanel::OnAddDirectoryButtonClick (wxCommandEvent& event)
    	{
    		DirectoryPath dir = Gui->SelectDirectory (this, LangString["SELECT_KEYFILE_PATH"]);
    		if (!dir.IsEmpty())
    		{
    			vector <wstring> fields;
    			fields.push_back (dir);
    			Gui->AppendToListCtrl (KeyfilesListCtrl, fields);
    			UpdateButtons();
    		}
    	}
    
    	void KeyfilesPanel::OnAddFilesButtonClick (wxCommandEvent& event)
    	{
    		FilePathList files = Gui->SelectFiles (this, LangString["SELECT_KEYFILES"], false, true);
    
    		foreach_ref (const FilePath &f, files)
    		{
    			vector <wstring> fields;
    			fields.push_back (f);
    			Gui->AppendToListCtrl (KeyfilesListCtrl, fields);
    		}
    		UpdateButtons();
    	}
    
    	void KeyfilesPanel::OnAddSecurityTokenSignatureButtonClick (wxCommandEvent& event)
    	{
    		try
    		{
    			SecurityTokenKeyfilesDialog dialog (this);
    			if (dialog.ShowModal() == wxID_OK)
    			{
    				foreach (const SecurityTokenKeyfilePath &path, dialog.GetSelectedSecurityTokenKeyfilePaths())
    				{
    					vector <wstring> fields;
    					fields.push_back (path);
    					Gui->AppendToListCtrl (KeyfilesListCtrl, fields);
    				}
    
    				UpdateButtons();
    			}
    		}
    		catch (exception &e)
    		{
    			Gui->ShowError (e);
    		}
    	}
    
    	void KeyfilesPanel::OnListSizeChanged (wxSizeEvent& event)
    	{
    		list <int> colPermilles;
    		colPermilles.push_back (1000);
    		Gui->SetListCtrlColumnWidths (KeyfilesListCtrl, colPermilles);
    		event.Skip();
    	}
    
    	void KeyfilesPanel::OnRemoveAllButtonClick (wxCommandEvent& event)
    	{
    		KeyfilesListCtrl->DeleteAllItems();
    		UpdateButtons();
    	}
    
    	void KeyfilesPanel::OnRemoveButtonClick (wxCommandEvent& event)
    	{
    		long offset = 0;
    		foreach (long item, Gui->GetListCtrlSelectedItems (KeyfilesListCtrl))
    			KeyfilesListCtrl->DeleteItem (item - offset++);
    
    		UpdateButtons();
    	}
    
    	void KeyfilesPanel::UpdateButtons ()
    	{
    		RemoveAllButton->Enable (KeyfilesListCtrl->GetItemCount() > 0);
    		RemoveButton->Enable (KeyfilesListCtrl->GetSelectedItemCount() > 0);
    	}
    }