]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - crypto/heimdal/include/make_crypto.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / crypto / heimdal / include / make_crypto.c
1 /*
2  * Copyright (c) 2002 - 2005 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden). 
4  * All rights reserved. 
5  *
6  * Redistribution and use in source and binary forms, with or without 
7  * modification, are permitted provided that the following conditions 
8  * are met: 
9  *
10  * 1. Redistributions of source code must retain the above copyright 
11  *    notice, this list of conditions and the following disclaimer. 
12  *
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. 
16  *
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. 
20  *
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 
31  * SUCH DAMAGE. 
32  */
33
34 #ifdef HAVE_CONFIG_H
35 #include <config.h>
36 RCSID("$Id: make_crypto.c 19477 2006-12-20 19:51:53Z lha $");
37 #endif
38 #include <stdio.h>
39 #include <string.h>
40 #include <stdlib.h>
41 #include <ctype.h>
42
43 int
44 main(int argc, char **argv)
45 {
46     char *p;
47     FILE *f;
48     if(argc != 2) {
49         fprintf(stderr, "Usage: make_crypto file\n");
50         exit(1);
51     }
52     if (strcmp(argv[1], "--version") == 0) {
53         printf("some version");
54         return 0;
55     }
56     f = fopen(argv[1], "w");
57     if(f == NULL) {
58         perror(argv[1]);
59         exit(1);
60     }
61     for(p = argv[1]; *p; p++)
62         if(!isalnum((unsigned char)*p))
63             *p = '_';
64     fprintf(f, "#ifndef __%s__\n", argv[1]);
65     fprintf(f, "#define __%s__\n", argv[1]);
66 #ifdef HAVE_OPENSSL
67     fputs("#ifndef OPENSSL_DES_LIBDES_COMPATIBILITY\n", f);
68     fputs("#define OPENSSL_DES_LIBDES_COMPATIBILITY\n", f);
69     fputs("#endif\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/aes.h>\n", f);
79     fputs("#include <openssl/ui.h>\n", f);
80     fputs("#include <openssl/rand.h>\n", f);
81     fputs("#include <openssl/engine.h>\n", f);
82     fputs("#include <openssl/pkcs12.h>\n", f);
83     fputs("#include <openssl/pem.h>\n", f);
84     fputs("#include <openssl/hmac.h>\n", f);
85     fputs("#ifndef BN_is_negative\n", f);
86     fputs("#define BN_set_negative(bn, flag) ((bn)->neg=(flag)?1:0)\n", f);
87     fputs("#define BN_is_negative(bn) ((bn)->neg != 0)\n", f);
88     fputs("#endif\n", f);
89 #else
90     fputs("#ifdef KRB5\n", f);
91     fputs("#include <krb5-types.h>\n", f);
92     fputs("#endif\n", f);
93     fputs("#include <hcrypto/evp.h>\n", f);
94     fputs("#include <hcrypto/des.h>\n", f);
95     fputs("#include <hcrypto/md2.h>\n", f);
96     fputs("#include <hcrypto/md4.h>\n", f);
97     fputs("#include <hcrypto/md5.h>\n", f);
98     fputs("#include <hcrypto/sha.h>\n", f);
99     fputs("#include <hcrypto/rc4.h>\n", f);
100     fputs("#include <hcrypto/rc2.h>\n", f);
101     fputs("#include <hcrypto/aes.h>\n", f);
102     fputs("#include <hcrypto/ui.h>\n", f);
103     fputs("#include <hcrypto/rand.h>\n", f);
104     fputs("#include <hcrypto/engine.h>\n", f);
105     fputs("#include <hcrypto/pkcs12.h>\n", f);
106     fputs("#include <hcrypto/hmac.h>\n", f);
107 #endif
108     fprintf(f, "#endif /* __%s__ */\n", argv[1]);
109     fclose(f);
110     exit(0);
111 }