diff options
Diffstat (limited to 'src/Platform/Memory.cpp')
-rw-r--r-- | src/Platform/Memory.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/Platform/Memory.cpp b/src/Platform/Memory.cpp index 1184d466..c4afed64 100644 --- a/src/Platform/Memory.cpp +++ b/src/Platform/Memory.cpp @@ -3,15 +3,14 @@ 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-2016 IDRIX + 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 "Common/Tcdefs.h" #include "Memory.h" #include "Exception.h" #include <stdlib.h> @@ -61,13 +60,8 @@ namespace VeraCrypt assert (memoryDestination != nullptr && memorySource != nullptr); memcpy (memoryDestination, memorySource, size); } - void Memory::Erase (void *memory, size_t size) - { - burn (memory, size); - } - void Memory::Zero (void *memory, size_t size) { memset (memory, 0, size); } |