/* 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-2016 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. */ #ifndef TC_HEADER_Platform_File #define TC_HEADER_Platform_File #include "PlatformBase.h" #include "Buffer.h" #include "FilesystemPath.h" #include "SystemException.h" namespace VeraCrypt { class File { public: enum FileOpenMode { CreateReadWrite, CreateWrite, OpenRead, OpenWrite, OpenReadWrite }; enum FileShareMode { ShareNone, ShareRead, ShareReadWrite, ShareReadWriteIgnoreLock }; enum FileOpenFlags { // Bitmap FlagsNone = 0, PreserveTimestamps = 1 << 0, DisableWriteCaching = 1 << 1 }; #ifdef TC_WINDOWS typedef FILE* SystemFileHandleType; #else typedef int SystemFileHandleType; #endif File () : FileIsOpen (false), SharedHandle (false) { } virtual ~File (); void AssignSystemHandle (SystemFileHandleType openFileHandle, bool sharedHandle = true) { if (FileIsOpen) Close(); FileHandle = openFileHandle; FileIsOpen = true; SharedHandle = sharedHandle; } void Close (); static void Copy (const FilePath &sourcePath, const FilePath &destinationPath, bool preserveTimestamps = true); void Delete (); void Flush () const; uint32 GetDeviceSectorSize () const; static size_t GetOptimalReadSize () { return OptimalReadSize; } static size_t GetOptimalWriteSize () { return OptimalWriteSize; } uint64 GetPartitionDeviceStartOffset () const; bool IsOpen () const { return FileIsOpen; } FilePath GetPath () const; uint64 Length () const; void Open (const FilePath &path, FileOpenMode mode = OpenRead, FileShareMode shareMode = ShareReadWrite, FileOpenFlags flags = FlagsNone); uint64 Read (const BufferPtr &buffer) const; void ReadCompleteBuffer (const BufferPtr &buffer) const; uint64 ReadAt (const BufferPtr &buffer, uint64 position) const; void SeekAt (uint64 position) const; void SeekEnd (int ofset) const; void Write (const ConstBufferPtr &buffer) const; void Write (const ConstBufferPtr &buffer, size_t length) const { Write (buffer.GetRange (0, length)); } void WriteAt (const ConstBufferPtr &buffer, uint64 position) const; protected: void ValidateState () const; static const size_t OptimalReadSize = 256 * 1024; static const size_t OptimalWriteSize = 256 * 1024; bool FileIsOpen; FileOpenFlags mFileOpenFlags; bool SharedHandle; FilePath Path; SystemFileHandleType FileHandle; #ifdef TC_WINDOWS #else time_t AccTime; time_t ModTime; #endif private: File (const File &); File &operator= (const File &); }; } #endif // TC_HEADER_Platform_File pt/tree/src/Crypto?h=VeraCrypt_1.24-Update5&id=d0e49804e2f26bd9ccef9676701655c64cef4f80'>Crypto/chacha256.h
blob: e9533a3918eb0b24536a549c63f4a5899e39f47c (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
#ifndef HEADER_Crypto_ChaCha256
#define HEADER_Crypto_ChaCha256

#include "Common/Tcdefs.h"
#include "config.h"

typedef struct
{
    CRYPTOPP_ALIGN_DATA(16) uint32 block_[16];
    CRYPTOPP_ALIGN_DATA(16) uint32 input_[16];
    size_t pos; 
    int internalRounds;
} ChaCha256Ctx;

#ifdef __cplusplus
extern "C" {
#endif

/*
 * key must be 32 bytes long and iv must be 8 bytes long
 */
void ChaCha256Init(ChaCha256Ctx* ctx, const unsigned char* key, const unsigned char* iv, int rounds);
void ChaCha256Encrypt(ChaCha256Ctx* ctx, const unsigned char* in, size_t len, unsigned char* out);
#define ChaCha256Decrypt ChaCha256Encrypt

#ifdef __cplusplus
}
#endif

#endif // HEADER_Crypto_ChaCha