~ubuntu-branches/ubuntu/jaunty/libcrypto++/jaunty

« back to all changes in this revision

Viewing changes to cryptest.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2006-03-16 23:08:48 UTC
  • mfrom: (3.1.2 dapper)
  • Revision ID: james.westby@ubuntu.com-20060316230848-wwtupzit1dy23s7s
Tags: 5.2.1c2a-3
* Patch source so that it compiles with GCC 4.1 .  More specifically,
  avoid mixing implicit calls to base classes and free-standing
  functions.
  (Closes: #356170).
* Use LDFLAGS=-pthread to fix linking errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "pch.h"
2
 
 
3
 
#ifdef __BCPLUSPLUS__
4
 
#include <condefs.h>
5
 
 
6
 
 
7
 
//---------------------------------------------------------------------------
8
 
USEUNIT("3way.cpp");
9
 
USEUNIT("algebra.cpp");
10
 
USEUNIT("asn.cpp");
11
 
USEUNIT("base32.cpp");
12
 
USEUNIT("base64.cpp");
13
 
USEUNIT("bench.cpp");
14
 
USEUNIT("bench2.cpp");
15
 
USEUNIT("bfinit.cpp");
16
 
USEUNIT("blowfish.cpp");
17
 
USEUNIT("blumgold.cpp");
18
 
USEUNIT("blumshub.cpp");
19
 
USEUNIT("camellia.cpp");
20
 
USEUNIT("cast.cpp");
21
 
USEUNIT("cast128s.cpp");
22
 
USEUNIT("cbcmac.cpp");
23
 
USEUNIT("crc.cpp");
24
 
USEUNIT("cryptlib.cpp");
25
 
USEUNIT("default.cpp");
26
 
USEUNIT("des.cpp");
27
 
USEUNIT("dessp.cpp");
28
 
USEUNIT("dh.cpp");
29
 
USEUNIT("dll.cpp");
30
 
USEUNIT("dsa.cpp");
31
 
USEUNIT("ec2n.cpp");
32
 
USEUNIT("eccrypto.cpp");
33
 
USEUNIT("ecp.cpp");
34
 
USEUNIT("elgamal.cpp");
35
 
USEUNIT("eprecomp.cpp");
36
 
USEUNIT("files.cpp");
37
 
USEUNIT("filters.cpp");
38
 
USEUNIT("forkjoin.cpp");
39
 
USEUNIT("gf2_32.cpp");
40
 
USEUNIT("gf256.cpp");
41
 
USEUNIT("gf2n.cpp");
42
 
USEUNIT("gost.cpp");
43
 
USEUNIT("gzip.cpp");
44
 
USEUNIT("haval.cpp");
45
 
USEUNIT("hex.cpp");
46
 
USEUNIT("hmac.cpp");
47
 
USEUNIT("idea.cpp");
48
 
USEUNIT("integer.cpp");
49
 
USEUNIT("iterhash.cpp");
50
 
USEUNIT("luc.cpp");
51
 
USEUNIT("md5.cpp");
52
 
USEUNIT("md5mac.cpp");
53
 
USEUNIT("misc.cpp");
54
 
USEUNIT("modes.cpp");
55
 
USEUNIT("nbtheory.cpp");
56
 
USEUNIT("oaep.cpp");
57
 
USEUNIT("pch.cpp");
58
 
USEUNIT("pkcspad.cpp");
59
 
USEUNIT("polynomi.cpp");
60
 
USEUNIT("pubkey.cpp");
61
 
USEUNIT("queue.cpp");
62
 
USEUNIT("rabin.cpp");
63
 
USEUNIT("randpool.cpp");
64
 
USEUNIT("rc5.cpp");
65
 
USEUNIT("ripemd.cpp");
66
 
USEUNIT("rng.cpp");
67
 
USEUNIT("rsa.cpp");
68
 
USEUNIT("safer.cpp");
69
 
USEUNIT("sapphire.cpp");
70
 
USEUNIT("seal.cpp");
71
 
USEUNIT("secshare.cpp");
72
 
USEUNIT("secsplit.cpp");
73
 
USEUNIT("sha.cpp");
74
 
USEUNIT("shark.cpp");
75
 
USEUNIT("sharkbox.cpp");
76
 
USEUNIT("square.cpp");
77
 
USEUNIT("squaretb.cpp");
78
 
USEUNIT("tea.cpp");
79
 
USEUNIT("test.cpp");
80
 
USEUNIT("tiger.cpp");
81
 
USEUNIT("tigertab.cpp");
82
 
USEUNIT("validat1.cpp");
83
 
USEUNIT("validat2.cpp");
84
 
USEUNIT("validat3.cpp");
85
 
USEUNIT("wake.cpp");
86
 
USEUNIT("zbits.cpp");
87
 
USEUNIT("zdeflate.cpp");
88
 
USEUNIT("zinflate.cpp");
89
 
USEUNIT("ztrees.cpp");
90
 
USEUNIT("cbc.cpp");
91
 
USEUNIT("arc4.cpp");
92
 
USEUNIT("modexppc.cpp");
93
 
USEUNIT("md2.cpp");
94
 
USEUNIT("rc2.cpp");
95
 
USEUNIT("rc6.cpp");
96
 
USEUNIT("mars.cpp");
97
 
USEUNIT("rw.cpp");
98
 
USEUNIT("marss.cpp");
99
 
USEUNIT("nr.cpp");
100
 
USEUNIT("mqv.cpp");
101
 
USEUNIT("rijndael.cpp");
102
 
USEUNIT("twofish.cpp");
103
 
USEUNIT("serpent.cpp");
104
 
USEUNIT("rdtables.cpp");
105
 
USEUNIT("tftables.cpp");
106
 
USEUNIT("xtr.cpp");
107
 
USEUNIT("skipjack.cpp");
108
 
USEUNIT("mqueue.cpp");
109
 
USEUNIT("xtrcrypt.cpp");
110
 
USEUNIT("network.cpp");
111
 
USEUNIT("osrng.cpp");
112
 
USEUNIT("socketft.cpp");
113
 
USEUNIT("whrlpool.cpp");
114
 
//---------------------------------------------------------------------------
115
 
int cmain(int argc, char **argv);
116
 
 
117
 
int main(int argc, char **argv)
118
 
{
119
 
        return cmain(argc, argv);
120
 
}
121
 
#endif