Make TS structures opaque.
[openssl.git] / apps / ciphers.c
1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2  * All rights reserved.
3  *
4  * This package is an SSL implementation written
5  * by Eric Young (eay@cryptsoft.com).
6  * The implementation was written so as to conform with Netscapes SSL.
7  *
8  * This library is free for commercial and non-commercial use as long as
9  * the following conditions are aheared to.  The following conditions
10  * apply to all code found in this distribution, be it the RC4, RSA,
11  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
12  * included with this distribution is covered by the same copyright terms
13  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14  *
15  * Copyright remains Eric Young's, and as such any Copyright notices in
16  * the code are not to be removed.
17  * If this package is used in a product, Eric Young should be given attribution
18  * as the author of the parts of the library used.
19  * This can be in the form of a textual message at program startup or
20  * in documentation (online or textual) provided with the package.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions
24  * are met:
25  * 1. Redistributions of source code must retain the copyright
26  *    notice, this list of conditions and the following disclaimer.
27  * 2. Redistributions in binary form must reproduce the above copyright
28  *    notice, this list of conditions and the following disclaimer in the
29  *    documentation and/or other materials provided with the distribution.
30  * 3. All advertising materials mentioning features or use of this software
31  *    must display the following acknowledgement:
32  *    "This product includes cryptographic software written by
33  *     Eric Young (eay@cryptsoft.com)"
34  *    The word 'cryptographic' can be left out if the rouines from the library
35  *    being used are not cryptographic related :-).
36  * 4. If you include any Windows specific code (or a derivative thereof) from
37  *    the apps directory (application code) you must include an acknowledgement:
38  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50  * SUCH DAMAGE.
51  *
52  * The licence and distribution terms for any publically available version or
53  * derivative of this code cannot be changed.  i.e. this code cannot simply be
54  * copied and put under another distribution licence
55  * [including the GNU Public Licence.]
56  */
57
58 #include <stdio.h>
59 #include <stdlib.h>
60 #include <string.h>
61 #include "apps.h"
62 #include <openssl/err.h>
63 #include <openssl/ssl.h>
64
65 typedef enum OPTION_choice {
66     OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
67     OPT_STDNAME,
68     OPT_SSL3,
69     OPT_TLS1,
70     OPT_V, OPT_UPPER_V, OPT_S
71 } OPTION_CHOICE;
72
73 OPTIONS ciphers_options[] = {
74     {"help", OPT_HELP, '-', "Display this summary"},
75     {"v", OPT_V, '-', "Verbose listing of the SSL/TLS ciphers"},
76     {"V", OPT_UPPER_V, '-', "Even more verbose"},
77     {"s", OPT_S, '-', "Only supported ciphers"},
78     {"tls1", OPT_TLS1, '-', "TLS1 mode"},
79 #ifndef OPENSSL_NO_SSL_TRACE
80     {"stdname", OPT_STDNAME, '-', "Show standard cipher names"},
81 #endif
82 #ifndef OPENSSL_NO_SSL3
83     {"ssl3", OPT_SSL3, '-', "SSL3 mode"},
84 #endif
85     {NULL}
86 };
87
88 int ciphers_main(int argc, char **argv)
89 {
90     SSL_CTX *ctx = NULL;
91     SSL *ssl = NULL;
92     STACK_OF(SSL_CIPHER) *sk = NULL;
93     const SSL_METHOD *meth = TLS_server_method();
94     int ret = 1, i, verbose = 0, Verbose = 0, use_supported = 0;
95 #ifndef OPENSSL_NO_SSL_TRACE
96     int stdname = 0;
97 #endif
98     const char *p;
99     char *ciphers = NULL, *prog;
100     char buf[512];
101     OPTION_CHOICE o;
102
103     prog = opt_init(argc, argv, ciphers_options);
104     while ((o = opt_next()) != OPT_EOF) {
105         switch (o) {
106         case OPT_EOF:
107         case OPT_ERR:
108  opthelp:
109             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
110             goto end;
111         case OPT_HELP:
112             opt_help(ciphers_options);
113             ret = 0;
114             goto end;
115         case OPT_V:
116             verbose = 1;
117             break;
118         case OPT_UPPER_V:
119             verbose = Verbose = 1;
120             break;
121         case OPT_S:
122             use_supported = 1;
123             break;
124         case OPT_STDNAME:
125 #ifndef OPENSSL_NO_SSL_TRACE
126             stdname = verbose = 1;
127 #endif
128             break;
129         case OPT_SSL3:
130 #ifndef OPENSSL_NO_SSL3
131             meth = SSLv3_client_method();
132 #endif
133             break;
134         case OPT_TLS1:
135             meth = TLSv1_client_method();
136             break;
137         }
138     }
139     argv = opt_rest();
140     argc = opt_num_rest();
141
142     if (argc == 1)
143         ciphers = *argv;
144     else if (argc != 0)
145         goto opthelp;
146
147     if (!app_load_modules(NULL))
148         goto end;
149
150     ctx = SSL_CTX_new(meth);
151     if (ctx == NULL)
152         goto err;
153     if (ciphers != NULL) {
154         if (!SSL_CTX_set_cipher_list(ctx, ciphers)) {
155             BIO_printf(bio_err, "Error in cipher list\n");
156             goto err;
157         }
158     }
159     ssl = SSL_new(ctx);
160     if (ssl == NULL)
161         goto err;
162
163     if (use_supported)
164         sk = SSL_get1_supported_ciphers(ssl);
165     else
166         sk = SSL_get_ciphers(ssl);
167
168     if (!verbose) {
169         for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
170             SSL_CIPHER *c = sk_SSL_CIPHER_value(sk, i);
171             p = SSL_CIPHER_get_name(c);
172             if (p == NULL)
173                 break;
174             if (i != 0)
175                 BIO_printf(bio_out, ":");
176             BIO_printf(bio_out, "%s", p);
177         }
178         BIO_printf(bio_out, "\n");
179     } else {
180
181         for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
182             SSL_CIPHER *c;
183
184             c = sk_SSL_CIPHER_value(sk, i);
185
186             if (Verbose) {
187                 unsigned long id = SSL_CIPHER_get_id(c);
188                 int id0 = (int)(id >> 24);
189                 int id1 = (int)((id >> 16) & 0xffL);
190                 int id2 = (int)((id >> 8) & 0xffL);
191                 int id3 = (int)(id & 0xffL);
192
193                 if ((id & 0xff000000L) == 0x03000000L)
194                     BIO_printf(bio_out, "          0x%02X,0x%02X - ", id2, id3); /* SSL3
195                                                                                   * cipher */
196                 else
197                     BIO_printf(bio_out, "0x%02X,0x%02X,0x%02X,0x%02X - ", id0, id1, id2, id3); /* whatever */
198             }
199 #ifndef OPENSSL_NO_SSL_TRACE
200             if (stdname) {
201                 const char *nm = SSL_CIPHER_standard_name(c);
202                 if (nm == NULL)
203                     nm = "UNKNOWN";
204                 BIO_printf(bio_out, "%s - ", nm);
205             }
206 #endif
207             BIO_puts(bio_out, SSL_CIPHER_description(c, buf, sizeof buf));
208         }
209     }
210
211     ret = 0;
212     goto end;
213  err:
214     ERR_print_errors(bio_err);
215  end:
216     if (use_supported)
217         sk_SSL_CIPHER_free(sk);
218     SSL_CTX_free(ctx);
219     SSL_free(ssl);
220     return (ret);
221 }