/* Deprecated/legacy */ #ifndef HEADER_Crypto_DES #define HEADER_Crypto_DES #ifdef __cplusplus extern "C" { #endif typedef struct TRIPLE_DES_KEY_STRUCT { unsigned __int32 k1[32]; unsigned __int32 k2[32]; unsigned __int32 k3[32]; unsigned __int32 k1d[32]; unsigned __int32 k2d[32]; unsigned __int32 k3d[32]; } TDES_KEY; void TripleDesEncrypt (byte *inBlock, byte *outBlock, TDES_KEY *key, int encrypt); void TripleDesSetKey (const byte *userKey, unsigned int length, TDES_KEY *ks); #ifdef __cplusplus } #endif #endif // HEADER_Crypto_DES nencrypted files."/>
VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/doc/html/Serpent.html
blob: 81e7a1e175e81f4e5e3a1e9726d2aabe0b8b19f8 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54