mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-12 03:18:26 -06:00
Change namespace from TrueCrypt to VeraCrypt. Rename method from Resources Resources::GetTrueCryptIcon to Resources::GetVeraCryptIcon.
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
# include "Crypto/Aes_hw_cpu.h"
|
||||
#endif
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
Cipher::Cipher () : Initialized (false)
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class Cipher;
|
||||
typedef vector < shared_ptr <Cipher> > CipherList;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
#include "Common/Crc.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class Crc32
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#include "EncryptionModeLRW.h"
|
||||
#include "EncryptionModeXTS.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
EncryptionAlgorithm::EncryptionAlgorithm () : Deprecated (false)
|
||||
{
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "Cipher.h"
|
||||
#include "EncryptionMode.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class EncryptionAlgorithm;
|
||||
typedef list < shared_ptr <EncryptionAlgorithm> > EncryptionAlgorithmList;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "EncryptionModeXTS.h"
|
||||
#include "EncryptionThreadPool.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
EncryptionMode::EncryptionMode () : KeySet (false), SectorOffset (0)
|
||||
{
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "Common/Crypto.h"
|
||||
#include "Cipher.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class EncryptionMode;
|
||||
typedef list < shared_ptr <EncryptionMode> > EncryptionModeList;
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#include "Common/Endian.h"
|
||||
#include "EncryptionModeCBC.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
void EncryptionModeCBC::Decrypt (byte *data, uint64 length) const
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
#include "EncryptionMode.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class EncryptionModeCBC : public EncryptionMode
|
||||
{
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
#include "EncryptionModeLRW.h"
|
||||
#include "Common/GfMul.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
void EncryptionModeLRW::Decrypt (byte *data, uint64 length) const
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
#include "EncryptionMode.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class EncryptionModeLRW : public EncryptionMode
|
||||
{
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
#include "EncryptionModeXTS.h"
|
||||
#include "Common/Crypto.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
void EncryptionModeXTS::Encrypt (byte *data, uint64 length) const
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
#include "EncryptionMode.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class EncryptionModeXTS : public EncryptionMode
|
||||
{
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
#include "EncryptionTest.h"
|
||||
#include "Pkcs5Kdf.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
void EncryptionTest::TestAll ()
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
#include "Common/Crypto.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class EncryptionTest
|
||||
{
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#include "Common/Crypto.h"
|
||||
#include "EncryptionThreadPool.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
void EncryptionThreadPool::DoWork (WorkType::Enum type, const EncryptionMode *encryptionMode, byte *data, uint64 startUnitNo, uint64 unitCount, size_t sectorSize)
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
#include "EncryptionMode.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class EncryptionThreadPool
|
||||
{
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "Crypto/Sha2.h"
|
||||
#include "Crypto/Whirlpool.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
HashList Hash::GetAvailableAlgorithms ()
|
||||
{
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
#include "Platform/Platform.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class Hash;
|
||||
typedef list < shared_ptr <Hash> > HashList;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Keyfile.h"
|
||||
#include "VolumeException.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
void Keyfile::Apply (const BufferPtr &pool) const
|
||||
{
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "Platform/Stream.h"
|
||||
#include "VolumePassword.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class Keyfile;
|
||||
typedef list < shared_ptr <Keyfile> > KeyfileList;
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#include "Pkcs5Kdf.h"
|
||||
#include "VolumePassword.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
Pkcs5Kdf::Pkcs5Kdf ()
|
||||
{
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "Hash.h"
|
||||
#include "VolumePassword.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class Pkcs5Kdf;
|
||||
typedef list < shared_ptr <Pkcs5Kdf> > Pkcs5KdfList;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/PlatformBase.h"
|
||||
#include "Common/Tcdefs.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class Version
|
||||
{
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
#include "VolumeLayout.h"
|
||||
#include "Common/Crypto.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
Volume::Volume ()
|
||||
: HiddenVolumeProtectionTriggered (false),
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
#include "VolumeException.h"
|
||||
#include "VolumeLayout.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class VolumePath
|
||||
{
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
#include "VolumeException.h"
|
||||
#include "Platform/SerializerFactory.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
// Do not inline the constructors to ensure this module is not optimized away
|
||||
VolumeException::VolumeException ()
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
#include "Platform/Platform.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
struct VolumeException : public Exception
|
||||
{
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
#include "VolumeException.h"
|
||||
#include "Common/Crypto.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
VolumeHeader::VolumeHeader (uint32 size)
|
||||
{
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
// For specifications of the volume header see Common/Volumes.c
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
typedef uint64 VolumeTime;
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#include "VolumeInfo.h"
|
||||
#include "Platform/SerializerFactory.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
void VolumeInfo::Deserialize (shared_ptr <Stream> stream)
|
||||
{
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
#include "Volume/Volume.h"
|
||||
#include "Volume/VolumeSlot.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class VolumeInfo;
|
||||
typedef list < shared_ptr <VolumeInfo> > VolumeInfoList;
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
#include "VolumeLayout.h"
|
||||
#include "Boot/Windows/BootCommon.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
VolumeLayout::VolumeLayout ()
|
||||
{
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
#include "Volume/Pkcs5Kdf.h"
|
||||
#include "VolumeHeader.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class VolumeLayout;
|
||||
typedef list < shared_ptr <VolumeLayout> > VolumeLayoutList;
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
#include "Platform/SerializerFactory.h"
|
||||
#include "Platform/StringConverter.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
VolumePassword::VolumePassword () : PasswordSize (0), Unportable (false)
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
#include "Platform/Serializable.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
class VolumePassword : public Serializable
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
|
||||
#include "VolumePasswordCache.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
CachedPasswordList VolumePasswordCache::GetPasswords ()
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#include "Platform/Platform.h"
|
||||
#include "VolumePassword.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
typedef list < shared_ptr < VolumePassword > > CachedPasswordList;
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
#include "Platform/Platform.h"
|
||||
|
||||
namespace TrueCrypt
|
||||
namespace VeraCrypt
|
||||
{
|
||||
typedef uint32 VolumeSlotNumber;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user