4 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
5 * 1999. Based on an original idea by Massimiliano Pala (madwolf@openca.org).
7 /* ====================================================================
8 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
19 * the documentation and/or other materials provided with the
22 * 3. All advertising materials mentioning features or use of this
23 * software must display the following acknowledgment:
24 * "This product includes software developed by the OpenSSL Project
25 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
27 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
28 * endorse or promote products derived from this software without
29 * prior written permission. For written permission, please contact
30 * licensing@OpenSSL.org.
32 * 5. Products derived from this software may not be called "OpenSSL"
33 * nor may "OpenSSL" appear in their names without prior written
34 * permission of the OpenSSL Project.
36 * 6. Redistributions of any form whatsoever must retain the following
38 * "This product includes software developed by the OpenSSL Project
39 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
41 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
42 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
44 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
45 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
46 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
47 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
50 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
52 * OF THE POSSIBILITY OF SUCH DAMAGE.
53 * ====================================================================
55 * This product includes cryptographic software written by Eric Young
56 * (eay@cryptsoft.com). This product includes software written by Tim
57 * Hudson (tjh@cryptsoft.com).
65 #include <openssl/bio.h>
66 #include <openssl/conf.h>
67 #include <openssl/err.h>
68 #include <openssl/evp.h>
69 #include <openssl/lhash.h>
70 #include <openssl/x509.h>
71 #include <openssl/pem.h>
74 #define PROG spkac_main
77 * -in arg - input file - default stdin
78 * -out arg - output file - default stdout
81 int MAIN(int, char **);
83 int MAIN(int argc
, char **argv
)
86 int i
, badops
= 0, ret
= 1;
87 BIO
*in
= NULL
, *out
= NULL
;
88 int verify
= 0, noout
= 0, pubkey
= 0;
89 char *infile
= NULL
, *outfile
= NULL
, *prog
;
90 char *passargin
= NULL
, *passin
= NULL
;
91 const char *spkac
= "SPKAC", *spksect
= "default";
93 char *challenge
= NULL
, *keyfile
= NULL
;
95 NETSCAPE_SPKI
*spki
= NULL
;
96 EVP_PKEY
*pkey
= NULL
;
97 #ifndef OPENSSL_NO_ENGINE
104 bio_err
= BIO_new_fp(stderr
, BIO_NOCLOSE
);
106 if (!load_config(bio_err
, NULL
))
113 if (strcmp(*argv
, "-in") == 0) {
117 } else if (strcmp(*argv
, "-out") == 0) {
121 } else if (strcmp(*argv
, "-passin") == 0) {
124 passargin
= *(++argv
);
125 } else if (strcmp(*argv
, "-key") == 0) {
129 } else if (strcmp(*argv
, "-challenge") == 0) {
132 challenge
= *(++argv
);
133 } else if (strcmp(*argv
, "-spkac") == 0) {
137 } else if (strcmp(*argv
, "-spksect") == 0) {
142 #ifndef OPENSSL_NO_ENGINE
143 else if (strcmp(*argv
, "-engine") == 0) {
149 else if (strcmp(*argv
, "-noout") == 0)
151 else if (strcmp(*argv
, "-pubkey") == 0)
153 else if (strcmp(*argv
, "-verify") == 0)
163 BIO_printf(bio_err
, "%s [options]\n", prog
);
164 BIO_printf(bio_err
, "where options are\n");
165 BIO_printf(bio_err
, " -in arg input file\n");
166 BIO_printf(bio_err
, " -out arg output file\n");
168 " -key arg create SPKAC using private key\n");
170 " -passin arg input file pass phrase source\n");
171 BIO_printf(bio_err
, " -challenge arg challenge string\n");
172 BIO_printf(bio_err
, " -spkac arg alternative SPKAC name\n");
173 BIO_printf(bio_err
, " -noout don't print SPKAC\n");
174 BIO_printf(bio_err
, " -pubkey output public key\n");
175 BIO_printf(bio_err
, " -verify verify SPKAC signature\n");
176 #ifndef OPENSSL_NO_ENGINE
178 " -engine e use engine e, possibly a hardware device.\n");
183 ERR_load_crypto_strings();
184 if (!app_passwd(bio_err
, passargin
, NULL
, &passin
, NULL
)) {
185 BIO_printf(bio_err
, "Error getting password\n");
188 #ifndef OPENSSL_NO_ENGINE
189 e
= setup_engine(bio_err
, engine
, 0);
193 pkey
= load_key(bio_err
,
194 strcmp(keyfile
, "-") ? keyfile
: NULL
,
195 FORMAT_PEM
, 1, passin
, e
, "private key");
199 spki
= NETSCAPE_SPKI_new();
201 ASN1_STRING_set(spki
->spkac
->challenge
,
202 challenge
, (int)strlen(challenge
));
203 NETSCAPE_SPKI_set_pubkey(spki
, pkey
);
204 NETSCAPE_SPKI_sign(spki
, pkey
, EVP_md5());
205 spkstr
= NETSCAPE_SPKI_b64_encode(spki
);
208 out
= BIO_new_file(outfile
, "w");
210 out
= BIO_new_fp(stdout
, BIO_NOCLOSE
);
211 #ifdef OPENSSL_SYS_VMS
213 BIO
*tmpbio
= BIO_new(BIO_f_linebuffer());
214 out
= BIO_push(tmpbio
, out
);
220 BIO_printf(bio_err
, "Error opening output file\n");
221 ERR_print_errors(bio_err
);
224 BIO_printf(out
, "SPKAC=%s\n", spkstr
);
225 OPENSSL_free(spkstr
);
231 in
= BIO_new_file(infile
, "r");
233 in
= BIO_new_fp(stdin
, BIO_NOCLOSE
);
236 BIO_printf(bio_err
, "Error opening input file\n");
237 ERR_print_errors(bio_err
);
241 conf
= NCONF_new(NULL
);
242 i
= NCONF_load_bio(conf
, in
, NULL
);
245 BIO_printf(bio_err
, "Error parsing config file\n");
246 ERR_print_errors(bio_err
);
250 spkstr
= NCONF_get_string(conf
, spksect
, spkac
);
253 BIO_printf(bio_err
, "Can't find SPKAC called \"%s\"\n", spkac
);
254 ERR_print_errors(bio_err
);
258 spki
= NETSCAPE_SPKI_b64_decode(spkstr
, -1);
261 BIO_printf(bio_err
, "Error loading SPKAC\n");
262 ERR_print_errors(bio_err
);
267 out
= BIO_new_file(outfile
, "w");
269 out
= BIO_new_fp(stdout
, BIO_NOCLOSE
);
270 #ifdef OPENSSL_SYS_VMS
272 BIO
*tmpbio
= BIO_new(BIO_f_linebuffer());
273 out
= BIO_push(tmpbio
, out
);
279 BIO_printf(bio_err
, "Error opening output file\n");
280 ERR_print_errors(bio_err
);
285 NETSCAPE_SPKI_print(out
, spki
);
286 pkey
= NETSCAPE_SPKI_get_pubkey(spki
);
288 i
= NETSCAPE_SPKI_verify(spki
, pkey
);
290 BIO_printf(bio_err
, "Signature OK\n");
292 BIO_printf(bio_err
, "Signature Failure\n");
293 ERR_print_errors(bio_err
);
298 PEM_write_bio_PUBKEY(out
, pkey
);
304 NETSCAPE_SPKI_free(spki
);
309 OPENSSL_free(passin
);