#ifndef TC_HEADER_Crypto_Ripemd160 #define TC_HEADER_Crypto_Ripemd160 #include "Common/Tcdefs.h" #if defined(__cplusplus) extern "C" { #endif #define RIPEMD160_BLOCK_LENGTH 64 typedef struct RMD160Context { unsigned __int32 state[5]; #ifndef TC_WINDOWS_BOOT uint64 count; #else uint32 count; #endif unsigned char buffer[RIPEMD160_BLOCK_LENGTH]; } RMD160_CTX; void RMD160Init (RMD160_CTX *ctx); void RMD160Transform (unsigned __int32 *state, const unsigned __int32 *data); void RMD160Update (RMD160_CTX *ctx, const unsigned char *input, unsigned __int32 len); void RMD160Final (unsigned char *digest, RMD160_CTX *ctx); #if defined(__cplusplus) } #endif #endif // TC_HEADER_Crypto_Ripemd160 l="stylesheet" type="text/css" />
VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/libzip/zip_random_uwp.c
blob: 0883ce454f74d98ef1816156b80d50221c094aba (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82