VeraCrypt

Documentation >> Technical Details >> Source Code

Source Code

VeraCrypt is open-source and free software. The complete source code of VeraCrypt (written in C, C++, and assembly) is freely available for peer review at the following Git repositories:

The source code of each release can be downloaded from the same location as the release binaries.

 

29d0097'>root/src/Setup/ComSetup.h
blob: 7a9fad2dfcd506e4800fe1cce4eac52e62d8ed4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 Copyright (c) 2007 TrueCrypt Developers Association. All rights reserved.

 Governed by the TrueCrypt License 3.0 the full text of which is contained in
 the file License.txt included in TrueCrypt binary and source code distribution
 packages.
*/

#ifdef __cplusplus
extern "C" {
#endif

BOOL RegisterComServers (char *modulePath);
BOOL UnregisterComServers (char *modulePath);

#ifdef __cplusplus
}
#endif