VeraCrypt
aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2014-12-30Windows driver: don't fail if the PRF recovered from boot memory is not recog...Mounir IDRASSI1-7/+0
2014-12-30Linux/MacOSX: code refactoring and cleanup.Mounir IDRASSI2-28/+25
2014-12-30Linux/MacOSX: Implement TrueCrypt conversion and loading support. Correct man...Mounir IDRASSI39-172/+540
2014-12-28Windows: propose only hash algorithm that support system encryption when the ...Mounir IDRASSI1-0/+19
2014-12-28
/*
 Derived from source code of TrueCrypt 7.1a, which is
 Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed
 by the TrueCrypt License 3.0.

 Modifications and additions to the original source code (contained in this file)
 and all other portions of this file are Copyright (c) 2013-2017 IDRIX
 and are governed by the Apache License 2.0 the full text of which is
 contained in the file License.txt included in VeraCrypt binary and source
 code distribution packages.
*/

#include "Platform/Time.h"
#include <sys/time.h>
#include <time.h>

namespace VeraCrypt
{
	uint64 Time::GetCurrent ()
	{
		struct timeval tv;
		gettimeofday (&tv, NULL);

		// Unix time => Windows file time
		return  ((uint64) tv.tv_sec + 134774LL * 24 * 3600) * 1000LL * 1000 * 10;
	}
}
tions'>-287
/+842
2014-12-20Linux/MacOSX: Add a donation menu entryMounir IDRASSI4-0/+23
2014-12-20Linux/MacOSX: remove calls to non existent class VolumeLayoutV1HiddenMounir IDRASSI2-4/+4
2014-12-20Reduce time for reporting wrong password by removing support for legacy hidde...Mounir IDRASSI8-103/+5
2014-12-20Windows: Add a donation menu entryMounir IDRASSI4-1/+10
2014-12-20Windows: Add missing PRF selection combobox in password page of Format progra...Mounir IDRASSI1-5/+7
2014-12-19Windows: change command line switch for PRF selection to /hash in order to ma...Mounir IDRASSI1-4/+4
2014-12-19Linux/MacOSX: Enhance performance by implementing the possibility to choose t...Mounir IDRASSI26-36/+160
2014-12-19Correct small typo in language XML file.Mounir IDRASSI1-2/+2
2014-12-17Windows: replace stricmp by _stricmp to remove compilation warningMounir IDRASSI1-4/+4
2014-12-17Windows: in silent mode, don't show the wait dialog during mount operationMounir IDRASSI1-9/+17
2014-12-17Windows: Remove Truecrypt name is error message.Mounir IDRASSI2-3/+3
2014-12-16Windows: Enhance performance by implementing the possibility to choose the co...Mounir IDRASSI32-138/+426
2014-12-16Windows: display a wait dialog during the lengthy opening of a volume. There ...Mounir IDRASSI3-3/+101
2014-12-16Windows: Enable Visual Styles for a modern look-and-feelMounir IDRASSI3-0/+36
2014-12-11Linux/macOSX: always display random gathering dialog/interface before perform...Mounir IDRASSI3-0/+20
2014-12-11Windows: always display random gathering dialog when UserEnrichRandomPool is ...Mounir IDRASSI3-0/+14
2014-12-11Linux/MacOSX: Implement generating more than one keyfile, specifying the size...Mounir IDRASSI8-35/+990
2014-12-11Update license text to show VeraCrypt name while maintaining the TrueCrypt li...Mounir IDRASSI4-161/+475
2014-12-11Correct XML syntax for symbols '<' and '>'Mounir IDRASSI1-1/+1
2014-12-11Windows: Implement specifying the size of the generated keyfiles and also let...Mounir IDRASSI4-18/+77
2014-12-11Implement function RandgetBytesFull that enables generating random bytes of a...Mounir IDRASSI2-21/+55
2014-12-11Windows: correct lock issue in RandgetBytes by releasing critical section in ...Mounir IDRASSI1-0/+1
2014-12-11Windows Driver: change inherited TrueCrypt constants in kernel objects tags b...Mounir IDRASSI5-7/+7
2014-12-07MacOSX/Linux: Solve truncated text in some Wizard windows by defining a large...VeraCrypt_1.0f-BETA2Mounir IDRASSI3-9/+9
2014-12-07Windows: Implement creation of multiple keyfiles at once.Mounir IDRASSI4-43/+206
2014-12-07Windows: implement auto-dismount option when session is lockedMounir IDRASSI4-4/+99
2014-12-04Windows: correct issue in handling "More information on keyfiles" link that c...Mounir IDRASSI1-0/+2