2 * Copyright (c) 2002 - 2005 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
44 main(int argc
, char **argv
)
49 fprintf(stderr
, "Usage: make_crypto file\n");
52 if (strcmp(argv
[1], "--version") == 0) {
53 printf("some version");
56 f
= fopen(argv
[1], "w");
61 for(p
= argv
[1]; *p
; p
++)
62 if(!isalnum((unsigned char)*p
))
64 fprintf(f
, "#ifndef __%s__\n", argv
[1]);
65 fprintf(f
, "#define __%s__\n", argv
[1]);
67 fputs("#ifndef OPENSSL_DES_LIBDES_COMPATIBILITY\n", f
);
68 fputs("#define OPENSSL_DES_LIBDES_COMPATIBILITY\n", f
);
70 fputs("#include <openssl/evp.h>\n", f
);
71 fputs("#include <openssl/des.h>\n", f
);
72 fputs("#include <openssl/rc4.h>\n", f
);
73 fputs("#include <openssl/rc2.h>\n", f
);
74 fputs("#include <openssl/md2.h>\n", f
);
75 fputs("#include <openssl/md4.h>\n", f
);
76 fputs("#include <openssl/md5.h>\n", f
);
77 fputs("#include <openssl/sha.h>\n", f
);
78 fputs("#include <openssl/ui.h>\n", f
);
79 fputs("#include <openssl/rand.h>\n", f
);
80 fputs("#include <openssl/engine.h>\n", f
);
81 fputs("#include <openssl/pkcs12.h>\n", f
);
82 fputs("#include <openssl/pem.h>\n", f
);
83 fputs("#include <openssl/hmac.h>\n", f
);
84 fputs("#ifndef BN_is_negative\n", f
);
85 fputs("#define BN_set_negative(bn, flag) ((bn)->neg=(flag)?1:0)\n", f
);
86 fputs("#define BN_is_negative(bn) ((bn)->neg != 0)\n", f
);
89 fputs("#ifdef KRB5\n", f
);
90 fputs("#include <krb5-types.h>\n", f
);
92 fputs("#include <hcrypto/evp.h>\n", f
);
93 fputs("#include <hcrypto/des.h>\n", f
);
94 fputs("#include <hcrypto/md2.h>\n", f
);
95 fputs("#include <hcrypto/md4.h>\n", f
);
96 fputs("#include <hcrypto/md5.h>\n", f
);
97 fputs("#include <hcrypto/sha.h>\n", f
);
98 fputs("#include <hcrypto/rc4.h>\n", f
);
99 fputs("#include <hcrypto/rc2.h>\n", f
);
100 fputs("#include <hcrypto/ui.h>\n", f
);
101 fputs("#include <hcrypto/rand.h>\n", f
);
102 fputs("#include <hcrypto/engine.h>\n", f
);
103 fputs("#include <hcrypto/pkcs12.h>\n", f
);
104 fputs("#include <hcrypto/hmac.h>\n", f
);
106 fprintf(f
, "#endif /* __%s__ */\n", argv
[1]);