summaryrefslogtreecommitdiff
path: root/cryptest.cpp
blob: 530233183cf561cc42b5f76c5ffb81d8c6251537 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#include "pch.h"

#ifdef __BCPLUSPLUS__
#include <condefs.h>


//---------------------------------------------------------------------------
USEUNIT("3way.cpp");
USEUNIT("algebra.cpp");
USEUNIT("asn.cpp");
USEUNIT("base64.cpp");
USEUNIT("bench.cpp");
USEUNIT("bfinit.cpp");
USEUNIT("blowfish.cpp");
USEUNIT("blumgold.cpp");
USEUNIT("blumshub.cpp");
USEUNIT("cast.cpp");
USEUNIT("cast128s.cpp");
USEUNIT("crc.cpp");
USEUNIT("cryptlib.cpp");
USEUNIT("default.cpp");
USEUNIT("des.cpp");
USEUNIT("dessp.cpp");
USEUNIT("dh.cpp");
USEUNIT("diamond.cpp");
USEUNIT("diamondt.cpp");
USEUNIT("dsa.cpp");
USEUNIT("ec2n.cpp");
USEUNIT("eccrypto.cpp");
USEUNIT("ecp.cpp");
USEUNIT("elgamal.cpp");
USEUNIT("eprecomp.cpp");
USEUNIT("files.cpp");
USEUNIT("filters.cpp");
USEUNIT("forkjoin.cpp");
USEUNIT("gf2_32.cpp");
USEUNIT("gf256.cpp");
USEUNIT("gf2n.cpp");
USEUNIT("gost.cpp");
USEUNIT("gzip.cpp");
USEUNIT("haval.cpp");
USEUNIT("hex.cpp");
USEUNIT("idea.cpp");
USEUNIT("integer.cpp");
USEUNIT("iterhash.cpp");
USEUNIT("luc.cpp");
USEUNIT("md5.cpp");
USEUNIT("md5mac.cpp");
USEUNIT("misc.cpp");
USEUNIT("modes.cpp");
USEUNIT("nbtheory.cpp");
USEUNIT("oaep.cpp");
USEUNIT("pch.cpp");
USEUNIT("pkcspad.cpp");
USEUNIT("polynomi.cpp");
USEUNIT("pubkey.cpp");
USEUNIT("queue.cpp");
USEUNIT("rabin.cpp");
USEUNIT("randpool.cpp");
USEUNIT("rc5.cpp");
USEUNIT("ripemd.cpp");
USEUNIT("rng.cpp");
USEUNIT("rsa.cpp");
USEUNIT("safer.cpp");
USEUNIT("sapphire.cpp");
USEUNIT("seal.cpp");
USEUNIT("secshare.cpp");
USEUNIT("secsplit.cpp");
USEUNIT("sha.cpp");
USEUNIT("shark.cpp");
USEUNIT("sharkbox.cpp");
USEUNIT("square.cpp");
USEUNIT("squaretb.cpp");
USEUNIT("tea.cpp");
USEUNIT("test.cpp");
USEUNIT("tiger.cpp");
USEUNIT("tigertab.cpp");
USEUNIT("validat1.cpp");
USEUNIT("validat2.cpp");
USEUNIT("validat3.cpp");
USEUNIT("wake.cpp");
USEUNIT("zbits.cpp");
USEUNIT("zdeflate.cpp");
USEUNIT("zinflate.cpp");
USEUNIT("ztrees.cpp");
USEUNIT("cbc.cpp");
USEUNIT("arc4.cpp");
USEUNIT("modexppc.cpp");
USEUNIT("md2.cpp");
USEUNIT("rc2.cpp");
USEUNIT("rc6.cpp");
USEUNIT("mars.cpp");
USEUNIT("rw.cpp");
USEUNIT("marss.cpp");
USEUNIT("nr.cpp");
USEUNIT("mqv.cpp");
USEUNIT("rijndael.cpp");
USEUNIT("twofish.cpp");
USEUNIT("serpent.cpp");
USEUNIT("rdtables.cpp");
USEUNIT("tftables.cpp");
USEUNIT("xtr.cpp");
USEUNIT("skipjack.cpp");
USEUNIT("mqueue.cpp");
USEUNIT("xtrcrypt.cpp");
USEUNIT("network.cpp");
USEUNIT("osrng.cpp");
USEUNIT("socketft.cpp");
//---------------------------------------------------------------------------
int cmain(int argc, char **argv);

int main(int argc, char **argv)
{
	return cmain(argc, argv);
}
#endif