1
0
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:
Mounir IDRASSI
2014-06-22 16:02:42 +02:00
parent 17823cb58c
commit 41a22ca4e7
239 changed files with 246 additions and 246 deletions

View File

@@ -19,7 +19,7 @@
# include "Crypto/Aes_hw_cpu.h"
#endif
namespace TrueCrypt
namespace VeraCrypt
{
Cipher::Cipher () : Initialized (false)
{

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Cipher;
typedef vector < shared_ptr <Cipher> > CipherList;

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "Common/Crc.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Crc32
{

View File

@@ -11,7 +11,7 @@
#include "EncryptionModeLRW.h"
#include "EncryptionModeXTS.h"
namespace TrueCrypt
namespace VeraCrypt
{
EncryptionAlgorithm::EncryptionAlgorithm () : Deprecated (false)
{

View File

@@ -13,7 +13,7 @@
#include "Cipher.h"
#include "EncryptionMode.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionAlgorithm;
typedef list < shared_ptr <EncryptionAlgorithm> > EncryptionAlgorithmList;

View File

@@ -12,7 +12,7 @@
#include "EncryptionModeXTS.h"
#include "EncryptionThreadPool.h"
namespace TrueCrypt
namespace VeraCrypt
{
EncryptionMode::EncryptionMode () : KeySet (false), SectorOffset (0)
{

View File

@@ -13,7 +13,7 @@
#include "Common/Crypto.h"
#include "Cipher.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionMode;
typedef list < shared_ptr <EncryptionMode> > EncryptionModeList;

View File

@@ -11,7 +11,7 @@
#include "Common/Endian.h"
#include "EncryptionModeCBC.h"
namespace TrueCrypt
namespace VeraCrypt
{
void EncryptionModeCBC::Decrypt (byte *data, uint64 length) const
{

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "EncryptionMode.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionModeCBC : public EncryptionMode
{

View File

@@ -9,7 +9,7 @@
#include "EncryptionModeLRW.h"
#include "Common/GfMul.h"
namespace TrueCrypt
namespace VeraCrypt
{
void EncryptionModeLRW::Decrypt (byte *data, uint64 length) const
{

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "EncryptionMode.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionModeLRW : public EncryptionMode
{

View File

@@ -9,7 +9,7 @@
#include "EncryptionModeXTS.h"
#include "Common/Crypto.h"
namespace TrueCrypt
namespace VeraCrypt
{
void EncryptionModeXTS::Encrypt (byte *data, uint64 length) const
{

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "EncryptionMode.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionModeXTS : public EncryptionMode
{

View File

@@ -17,7 +17,7 @@
#include "EncryptionTest.h"
#include "Pkcs5Kdf.h"
namespace TrueCrypt
namespace VeraCrypt
{
void EncryptionTest::TestAll ()
{

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "Common/Crypto.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionTest
{

View File

@@ -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)
{

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "EncryptionMode.h"
namespace TrueCrypt
namespace VeraCrypt
{
class EncryptionThreadPool
{

View File

@@ -13,7 +13,7 @@
#include "Crypto/Sha2.h"
#include "Crypto/Whirlpool.h"
namespace TrueCrypt
namespace VeraCrypt
{
HashList Hash::GetAvailableAlgorithms ()
{

View File

@@ -11,7 +11,7 @@
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Hash;
typedef list < shared_ptr <Hash> > HashList;

View File

@@ -12,7 +12,7 @@
#include "Keyfile.h"
#include "VolumeException.h"
namespace TrueCrypt
namespace VeraCrypt
{
void Keyfile::Apply (const BufferPtr &pool) const
{

View File

@@ -13,7 +13,7 @@
#include "Platform/Stream.h"
#include "VolumePassword.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Keyfile;
typedef list < shared_ptr <Keyfile> > KeyfileList;

View File

@@ -10,7 +10,7 @@
#include "Pkcs5Kdf.h"
#include "VolumePassword.h"
namespace TrueCrypt
namespace VeraCrypt
{
Pkcs5Kdf::Pkcs5Kdf ()
{

View File

@@ -13,7 +13,7 @@
#include "Hash.h"
#include "VolumePassword.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Pkcs5Kdf;
typedef list < shared_ptr <Pkcs5Kdf> > Pkcs5KdfList;

View File

@@ -12,7 +12,7 @@
#include "Platform/PlatformBase.h"
#include "Common/Tcdefs.h"
namespace TrueCrypt
namespace VeraCrypt
{
class Version
{

View File

@@ -16,7 +16,7 @@
#include "VolumeLayout.h"
#include "Common/Crypto.h"
namespace TrueCrypt
namespace VeraCrypt
{
Volume::Volume ()
: HiddenVolumeProtectionTriggered (false),

View File

@@ -18,7 +18,7 @@
#include "VolumeException.h"
#include "VolumeLayout.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumePath
{

View File

@@ -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 ()

View File

@@ -11,7 +11,7 @@
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
struct VolumeException : public Exception
{

View File

@@ -14,7 +14,7 @@
#include "VolumeException.h"
#include "Common/Crypto.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeHeader::VolumeHeader (uint32 size)
{

View File

@@ -22,7 +22,7 @@
// For specifications of the volume header see Common/Volumes.c
namespace TrueCrypt
namespace VeraCrypt
{
typedef uint64 VolumeTime;

View File

@@ -10,7 +10,7 @@
#include "VolumeInfo.h"
#include "Platform/SerializerFactory.h"
namespace TrueCrypt
namespace VeraCrypt
{
void VolumeInfo::Deserialize (shared_ptr <Stream> stream)
{

View File

@@ -14,7 +14,7 @@
#include "Volume/Volume.h"
#include "Volume/VolumeSlot.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeInfo;
typedef list < shared_ptr <VolumeInfo> > VolumeInfoList;

View File

@@ -13,7 +13,7 @@
#include "VolumeLayout.h"
#include "Boot/Windows/BootCommon.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumeLayout::VolumeLayout ()
{

View File

@@ -15,7 +15,7 @@
#include "Volume/Pkcs5Kdf.h"
#include "VolumeHeader.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumeLayout;
typedef list < shared_ptr <VolumeLayout> > VolumeLayoutList;

View File

@@ -10,7 +10,7 @@
#include "Platform/SerializerFactory.h"
#include "Platform/StringConverter.h"
namespace TrueCrypt
namespace VeraCrypt
{
VolumePassword::VolumePassword () : PasswordSize (0), Unportable (false)
{

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "Platform/Serializable.h"
namespace TrueCrypt
namespace VeraCrypt
{
class VolumePassword : public Serializable
{

View File

@@ -8,7 +8,7 @@
#include "VolumePasswordCache.h"
namespace TrueCrypt
namespace VeraCrypt
{
CachedPasswordList VolumePasswordCache::GetPasswords ()
{

View File

@@ -12,7 +12,7 @@
#include "Platform/Platform.h"
#include "VolumePassword.h"
namespace TrueCrypt
namespace VeraCrypt
{
typedef list < shared_ptr < VolumePassword > > CachedPasswordList;

View File

@@ -11,7 +11,7 @@
#include "Platform/Platform.h"
namespace TrueCrypt
namespace VeraCrypt
{
typedef uint32 VolumeSlotNumber;
}