sl@0
|
1 |
/* ssl/ssl_locl.h */
|
sl@0
|
2 |
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* This package is an SSL implementation written
|
sl@0
|
6 |
* by Eric Young (eay@cryptsoft.com).
|
sl@0
|
7 |
* The implementation was written so as to conform with Netscapes SSL.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is free for commercial and non-commercial use as long as
|
sl@0
|
10 |
* the following conditions are aheared to. The following conditions
|
sl@0
|
11 |
* apply to all code found in this distribution, be it the RC4, RSA,
|
sl@0
|
12 |
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
sl@0
|
13 |
* included with this distribution is covered by the same copyright terms
|
sl@0
|
14 |
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
sl@0
|
15 |
*
|
sl@0
|
16 |
* Copyright remains Eric Young's, and as such any Copyright notices in
|
sl@0
|
17 |
* the code are not to be removed.
|
sl@0
|
18 |
* If this package is used in a product, Eric Young should be given attribution
|
sl@0
|
19 |
* as the author of the parts of the library used.
|
sl@0
|
20 |
* This can be in the form of a textual message at program startup or
|
sl@0
|
21 |
* in documentation (online or textual) provided with the package.
|
sl@0
|
22 |
*
|
sl@0
|
23 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
24 |
* modification, are permitted provided that the following conditions
|
sl@0
|
25 |
* are met:
|
sl@0
|
26 |
* 1. Redistributions of source code must retain the copyright
|
sl@0
|
27 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
28 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
29 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
30 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
31 |
* 3. All advertising materials mentioning features or use of this software
|
sl@0
|
32 |
* must display the following acknowledgement:
|
sl@0
|
33 |
* "This product includes cryptographic software written by
|
sl@0
|
34 |
* Eric Young (eay@cryptsoft.com)"
|
sl@0
|
35 |
* The word 'cryptographic' can be left out if the rouines from the library
|
sl@0
|
36 |
* being used are not cryptographic related :-).
|
sl@0
|
37 |
* 4. If you include any Windows specific code (or a derivative thereof) from
|
sl@0
|
38 |
* the apps directory (application code) you must include an acknowledgement:
|
sl@0
|
39 |
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
sl@0
|
40 |
*
|
sl@0
|
41 |
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
sl@0
|
42 |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
43 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
44 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
sl@0
|
45 |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
46 |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
sl@0
|
47 |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
48 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
sl@0
|
49 |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
sl@0
|
50 |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
sl@0
|
51 |
* SUCH DAMAGE.
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* The licence and distribution terms for any publically available version or
|
sl@0
|
54 |
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
sl@0
|
55 |
* copied and put under another distribution licence
|
sl@0
|
56 |
* [including the GNU Public Licence.]
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
/* ====================================================================
|
sl@0
|
59 |
* Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
|
sl@0
|
60 |
*
|
sl@0
|
61 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
62 |
* modification, are permitted provided that the following conditions
|
sl@0
|
63 |
* are met:
|
sl@0
|
64 |
*
|
sl@0
|
65 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
66 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
67 |
*
|
sl@0
|
68 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
69 |
* notice, this list of conditions and the following disclaimer in
|
sl@0
|
70 |
* the documentation and/or other materials provided with the
|
sl@0
|
71 |
* distribution.
|
sl@0
|
72 |
*
|
sl@0
|
73 |
* 3. All advertising materials mentioning features or use of this
|
sl@0
|
74 |
* software must display the following acknowledgment:
|
sl@0
|
75 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
76 |
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
sl@0
|
77 |
*
|
sl@0
|
78 |
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
sl@0
|
79 |
* endorse or promote products derived from this software without
|
sl@0
|
80 |
* prior written permission. For written permission, please contact
|
sl@0
|
81 |
* openssl-core@openssl.org.
|
sl@0
|
82 |
*
|
sl@0
|
83 |
* 5. Products derived from this software may not be called "OpenSSL"
|
sl@0
|
84 |
* nor may "OpenSSL" appear in their names without prior written
|
sl@0
|
85 |
* permission of the OpenSSL Project.
|
sl@0
|
86 |
*
|
sl@0
|
87 |
* 6. Redistributions of any form whatsoever must retain the following
|
sl@0
|
88 |
* acknowledgment:
|
sl@0
|
89 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
90 |
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
sl@0
|
91 |
*
|
sl@0
|
92 |
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
sl@0
|
93 |
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
94 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
sl@0
|
95 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
sl@0
|
96 |
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
sl@0
|
97 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
sl@0
|
98 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
sl@0
|
99 |
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
100 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
sl@0
|
101 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
sl@0
|
102 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
sl@0
|
103 |
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
104 |
* ====================================================================
|
sl@0
|
105 |
*
|
sl@0
|
106 |
* This product includes cryptographic software written by Eric Young
|
sl@0
|
107 |
* (eay@cryptsoft.com). This product includes software written by Tim
|
sl@0
|
108 |
* Hudson (tjh@cryptsoft.com).
|
sl@0
|
109 |
*
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
/* ====================================================================
|
sl@0
|
112 |
* Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED.
|
sl@0
|
113 |
* ECC cipher suite support in OpenSSL originally developed by
|
sl@0
|
114 |
* SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
|
sl@0
|
117 |
#ifndef HEADER_SSL_LOCL_H
|
sl@0
|
118 |
#define HEADER_SSL_LOCL_H
|
sl@0
|
119 |
#include <stdlib.h>
|
sl@0
|
120 |
#include <time.h>
|
sl@0
|
121 |
#include <string.h>
|
sl@0
|
122 |
#include <errno.h>
|
sl@0
|
123 |
|
sl@0
|
124 |
#include "e_os.h"
|
sl@0
|
125 |
|
sl@0
|
126 |
#include <openssl/buffer.h>
|
sl@0
|
127 |
#include <openssl/comp.h>
|
sl@0
|
128 |
#include <openssl/bio.h>
|
sl@0
|
129 |
#include <openssl/stack.h>
|
sl@0
|
130 |
#ifndef OPENSSL_NO_RSA
|
sl@0
|
131 |
#include <openssl/rsa.h>
|
sl@0
|
132 |
#endif
|
sl@0
|
133 |
#ifndef OPENSSL_NO_DSA
|
sl@0
|
134 |
#include <openssl/dsa.h>
|
sl@0
|
135 |
#endif
|
sl@0
|
136 |
#include <openssl/err.h>
|
sl@0
|
137 |
#include <openssl/ssl.h>
|
sl@0
|
138 |
#include <openssl/symhacks.h>
|
sl@0
|
139 |
|
sl@0
|
140 |
#if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
|
sl@0
|
141 |
#include "libssl_wsd.h"
|
sl@0
|
142 |
//#ifndef EMULATOR
|
sl@0
|
143 |
//#define EMULATOR (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
|
sl@0
|
144 |
//#endif
|
sl@0
|
145 |
#endif
|
sl@0
|
146 |
|
sl@0
|
147 |
#ifdef OPENSSL_BUILD_SHLIBSSL
|
sl@0
|
148 |
# undef OPENSSL_EXTERN
|
sl@0
|
149 |
# define OPENSSL_EXTERN OPENSSL_EXPORT
|
sl@0
|
150 |
#endif
|
sl@0
|
151 |
|
sl@0
|
152 |
#define PKCS1_CHECK
|
sl@0
|
153 |
|
sl@0
|
154 |
#define c2l(c,l) (l = ((unsigned long)(*((c)++))) , \
|
sl@0
|
155 |
l|=(((unsigned long)(*((c)++)))<< 8), \
|
sl@0
|
156 |
l|=(((unsigned long)(*((c)++)))<<16), \
|
sl@0
|
157 |
l|=(((unsigned long)(*((c)++)))<<24))
|
sl@0
|
158 |
|
sl@0
|
159 |
/* NOTE - c is not incremented as per c2l */
|
sl@0
|
160 |
#define c2ln(c,l1,l2,n) { \
|
sl@0
|
161 |
c+=n; \
|
sl@0
|
162 |
l1=l2=0; \
|
sl@0
|
163 |
switch (n) { \
|
sl@0
|
164 |
case 8: l2 =((unsigned long)(*(--(c))))<<24; \
|
sl@0
|
165 |
case 7: l2|=((unsigned long)(*(--(c))))<<16; \
|
sl@0
|
166 |
case 6: l2|=((unsigned long)(*(--(c))))<< 8; \
|
sl@0
|
167 |
case 5: l2|=((unsigned long)(*(--(c)))); \
|
sl@0
|
168 |
case 4: l1 =((unsigned long)(*(--(c))))<<24; \
|
sl@0
|
169 |
case 3: l1|=((unsigned long)(*(--(c))))<<16; \
|
sl@0
|
170 |
case 2: l1|=((unsigned long)(*(--(c))))<< 8; \
|
sl@0
|
171 |
case 1: l1|=((unsigned long)(*(--(c)))); \
|
sl@0
|
172 |
} \
|
sl@0
|
173 |
}
|
sl@0
|
174 |
|
sl@0
|
175 |
#define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \
|
sl@0
|
176 |
*((c)++)=(unsigned char)(((l)>> 8)&0xff), \
|
sl@0
|
177 |
*((c)++)=(unsigned char)(((l)>>16)&0xff), \
|
sl@0
|
178 |
*((c)++)=(unsigned char)(((l)>>24)&0xff))
|
sl@0
|
179 |
|
sl@0
|
180 |
#define n2l(c,l) (l =((unsigned long)(*((c)++)))<<24, \
|
sl@0
|
181 |
l|=((unsigned long)(*((c)++)))<<16, \
|
sl@0
|
182 |
l|=((unsigned long)(*((c)++)))<< 8, \
|
sl@0
|
183 |
l|=((unsigned long)(*((c)++))))
|
sl@0
|
184 |
|
sl@0
|
185 |
#define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \
|
sl@0
|
186 |
*((c)++)=(unsigned char)(((l)>>16)&0xff), \
|
sl@0
|
187 |
*((c)++)=(unsigned char)(((l)>> 8)&0xff), \
|
sl@0
|
188 |
*((c)++)=(unsigned char)(((l) )&0xff))
|
sl@0
|
189 |
|
sl@0
|
190 |
#define l2n6(l,c) (*((c)++)=(unsigned char)(((l)>>40)&0xff), \
|
sl@0
|
191 |
*((c)++)=(unsigned char)(((l)>>32)&0xff), \
|
sl@0
|
192 |
*((c)++)=(unsigned char)(((l)>>24)&0xff), \
|
sl@0
|
193 |
*((c)++)=(unsigned char)(((l)>>16)&0xff), \
|
sl@0
|
194 |
*((c)++)=(unsigned char)(((l)>> 8)&0xff), \
|
sl@0
|
195 |
*((c)++)=(unsigned char)(((l) )&0xff))
|
sl@0
|
196 |
|
sl@0
|
197 |
#define n2l6(c,l) (l =((BN_ULLONG)(*((c)++)))<<40, \
|
sl@0
|
198 |
l|=((BN_ULLONG)(*((c)++)))<<32, \
|
sl@0
|
199 |
l|=((BN_ULLONG)(*((c)++)))<<24, \
|
sl@0
|
200 |
l|=((BN_ULLONG)(*((c)++)))<<16, \
|
sl@0
|
201 |
l|=((BN_ULLONG)(*((c)++)))<< 8, \
|
sl@0
|
202 |
l|=((BN_ULLONG)(*((c)++))))
|
sl@0
|
203 |
|
sl@0
|
204 |
/* NOTE - c is not incremented as per l2c */
|
sl@0
|
205 |
#define l2cn(l1,l2,c,n) { \
|
sl@0
|
206 |
c+=n; \
|
sl@0
|
207 |
switch (n) { \
|
sl@0
|
208 |
case 8: *(--(c))=(unsigned char)(((l2)>>24)&0xff); \
|
sl@0
|
209 |
case 7: *(--(c))=(unsigned char)(((l2)>>16)&0xff); \
|
sl@0
|
210 |
case 6: *(--(c))=(unsigned char)(((l2)>> 8)&0xff); \
|
sl@0
|
211 |
case 5: *(--(c))=(unsigned char)(((l2) )&0xff); \
|
sl@0
|
212 |
case 4: *(--(c))=(unsigned char)(((l1)>>24)&0xff); \
|
sl@0
|
213 |
case 3: *(--(c))=(unsigned char)(((l1)>>16)&0xff); \
|
sl@0
|
214 |
case 2: *(--(c))=(unsigned char)(((l1)>> 8)&0xff); \
|
sl@0
|
215 |
case 1: *(--(c))=(unsigned char)(((l1) )&0xff); \
|
sl@0
|
216 |
} \
|
sl@0
|
217 |
}
|
sl@0
|
218 |
|
sl@0
|
219 |
#define n2s(c,s) ((s=(((unsigned int)(c[0]))<< 8)| \
|
sl@0
|
220 |
(((unsigned int)(c[1])) )),c+=2)
|
sl@0
|
221 |
#define s2n(s,c) ((c[0]=(unsigned char)(((s)>> 8)&0xff), \
|
sl@0
|
222 |
c[1]=(unsigned char)(((s) )&0xff)),c+=2)
|
sl@0
|
223 |
|
sl@0
|
224 |
#define n2l3(c,l) ((l =(((unsigned long)(c[0]))<<16)| \
|
sl@0
|
225 |
(((unsigned long)(c[1]))<< 8)| \
|
sl@0
|
226 |
(((unsigned long)(c[2])) )),c+=3)
|
sl@0
|
227 |
|
sl@0
|
228 |
#define l2n3(l,c) ((c[0]=(unsigned char)(((l)>>16)&0xff), \
|
sl@0
|
229 |
c[1]=(unsigned char)(((l)>> 8)&0xff), \
|
sl@0
|
230 |
c[2]=(unsigned char)(((l) )&0xff)),c+=3)
|
sl@0
|
231 |
|
sl@0
|
232 |
/* LOCAL STUFF */
|
sl@0
|
233 |
|
sl@0
|
234 |
#define SSL_DECRYPT 0
|
sl@0
|
235 |
#define SSL_ENCRYPT 1
|
sl@0
|
236 |
|
sl@0
|
237 |
#define TWO_BYTE_BIT 0x80
|
sl@0
|
238 |
#define SEC_ESC_BIT 0x40
|
sl@0
|
239 |
#define TWO_BYTE_MASK 0x7fff
|
sl@0
|
240 |
#define THREE_BYTE_MASK 0x3fff
|
sl@0
|
241 |
|
sl@0
|
242 |
#define INC32(a) ((a)=((a)+1)&0xffffffffL)
|
sl@0
|
243 |
#define DEC32(a) ((a)=((a)-1)&0xffffffffL)
|
sl@0
|
244 |
#define MAX_MAC_SIZE 20 /* up from 16 for SSLv3 */
|
sl@0
|
245 |
|
sl@0
|
246 |
/*
|
sl@0
|
247 |
* Define the Bitmasks for SSL_CIPHER.algorithms.
|
sl@0
|
248 |
* This bits are used packed as dense as possible. If new methods/ciphers
|
sl@0
|
249 |
* etc will be added, the bits a likely to change, so this information
|
sl@0
|
250 |
* is for internal library use only, even though SSL_CIPHER.algorithms
|
sl@0
|
251 |
* can be publicly accessed.
|
sl@0
|
252 |
* Use the according functions for cipher management instead.
|
sl@0
|
253 |
*
|
sl@0
|
254 |
* The bit mask handling in the selection and sorting scheme in
|
sl@0
|
255 |
* ssl_create_cipher_list() has only limited capabilities, reflecting
|
sl@0
|
256 |
* that the different entities within are mutually exclusive:
|
sl@0
|
257 |
* ONLY ONE BIT PER MASK CAN BE SET AT A TIME.
|
sl@0
|
258 |
*/
|
sl@0
|
259 |
#define SSL_MKEY_MASK 0x000000FFL
|
sl@0
|
260 |
#define SSL_kRSA 0x00000001L /* RSA key exchange */
|
sl@0
|
261 |
#define SSL_kDHr 0x00000002L /* DH cert RSA CA cert */
|
sl@0
|
262 |
#define SSL_kDHd 0x00000004L /* DH cert DSA CA cert */
|
sl@0
|
263 |
#define SSL_kFZA 0x00000008L
|
sl@0
|
264 |
#define SSL_kEDH 0x00000010L /* tmp DH key no DH cert */
|
sl@0
|
265 |
#define SSL_kKRB5 0x00000020L /* Kerberos5 key exchange */
|
sl@0
|
266 |
#define SSL_kECDH 0x00000040L /* ECDH w/ long-term keys */
|
sl@0
|
267 |
#define SSL_kECDHE 0x00000080L /* ephemeral ECDH */
|
sl@0
|
268 |
#define SSL_EDH (SSL_kEDH|(SSL_AUTH_MASK^SSL_aNULL))
|
sl@0
|
269 |
|
sl@0
|
270 |
#define SSL_AUTH_MASK 0x00007F00L
|
sl@0
|
271 |
#define SSL_aRSA 0x00000100L /* Authenticate with RSA */
|
sl@0
|
272 |
#define SSL_aDSS 0x00000200L /* Authenticate with DSS */
|
sl@0
|
273 |
#define SSL_DSS SSL_aDSS
|
sl@0
|
274 |
#define SSL_aFZA 0x00000400L
|
sl@0
|
275 |
#define SSL_aNULL 0x00000800L /* no Authenticate, ADH */
|
sl@0
|
276 |
#define SSL_aDH 0x00001000L /* no Authenticate, ADH */
|
sl@0
|
277 |
#define SSL_aKRB5 0x00002000L /* Authenticate with KRB5 */
|
sl@0
|
278 |
#define SSL_aECDSA 0x00004000L /* Authenticate with ECDSA */
|
sl@0
|
279 |
|
sl@0
|
280 |
#define SSL_NULL (SSL_eNULL)
|
sl@0
|
281 |
#define SSL_ADH (SSL_kEDH|SSL_aNULL)
|
sl@0
|
282 |
#define SSL_RSA (SSL_kRSA|SSL_aRSA)
|
sl@0
|
283 |
#define SSL_DH (SSL_kDHr|SSL_kDHd|SSL_kEDH)
|
sl@0
|
284 |
#define SSL_ECDH (SSL_kECDH|SSL_kECDHE)
|
sl@0
|
285 |
#define SSL_FZA (SSL_aFZA|SSL_kFZA|SSL_eFZA)
|
sl@0
|
286 |
#define SSL_KRB5 (SSL_kKRB5|SSL_aKRB5)
|
sl@0
|
287 |
|
sl@0
|
288 |
#define SSL_ENC_MASK 0x043F8000L
|
sl@0
|
289 |
#define SSL_DES 0x00008000L
|
sl@0
|
290 |
#define SSL_3DES 0x00010000L
|
sl@0
|
291 |
#define SSL_RC4 0x00020000L
|
sl@0
|
292 |
#define SSL_RC2 0x00040000L
|
sl@0
|
293 |
#define SSL_IDEA 0x00080000L
|
sl@0
|
294 |
#define SSL_eFZA 0x00100000L
|
sl@0
|
295 |
#define SSL_eNULL 0x00200000L
|
sl@0
|
296 |
#define SSL_AES 0x04000000L
|
sl@0
|
297 |
|
sl@0
|
298 |
|
sl@0
|
299 |
|
sl@0
|
300 |
#define SSL_MAC_MASK 0x00c00000L
|
sl@0
|
301 |
#define SSL_MD5 0x00400000L
|
sl@0
|
302 |
#define SSL_SHA1 0x00800000L
|
sl@0
|
303 |
#define SSL_SHA (SSL_SHA1)
|
sl@0
|
304 |
|
sl@0
|
305 |
#define SSL_SSL_MASK 0x03000000L
|
sl@0
|
306 |
#define SSL_SSLV2 0x01000000L
|
sl@0
|
307 |
#define SSL_SSLV3 0x02000000L
|
sl@0
|
308 |
#define SSL_TLSV1 SSL_SSLV3 /* for now */
|
sl@0
|
309 |
|
sl@0
|
310 |
/* we have used 07ffffff - 5 bits left to go. */
|
sl@0
|
311 |
|
sl@0
|
312 |
/*
|
sl@0
|
313 |
* Export and cipher strength information. For each cipher we have to decide
|
sl@0
|
314 |
* whether it is exportable or not. This information is likely to change
|
sl@0
|
315 |
* over time, since the export control rules are no static technical issue.
|
sl@0
|
316 |
*
|
sl@0
|
317 |
* Independent of the export flag the cipher strength is sorted into classes.
|
sl@0
|
318 |
* SSL_EXP40 was denoting the 40bit US export limit of past times, which now
|
sl@0
|
319 |
* is at 56bit (SSL_EXP56). If the exportable cipher class is going to change
|
sl@0
|
320 |
* again (eg. to 64bit) the use of "SSL_EXP*" becomes blurred even more,
|
sl@0
|
321 |
* since SSL_EXP64 could be similar to SSL_LOW.
|
sl@0
|
322 |
* For this reason SSL_MICRO and SSL_MINI macros are included to widen the
|
sl@0
|
323 |
* namespace of SSL_LOW-SSL_HIGH to lower values. As development of speed
|
sl@0
|
324 |
* and ciphers goes, another extension to SSL_SUPER and/or SSL_ULTRA would
|
sl@0
|
325 |
* be possible.
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
#define SSL_EXP_MASK 0x00000003L
|
sl@0
|
328 |
#define SSL_NOT_EXP 0x00000001L
|
sl@0
|
329 |
#define SSL_EXPORT 0x00000002L
|
sl@0
|
330 |
|
sl@0
|
331 |
#define SSL_STRONG_MASK 0x000000fcL
|
sl@0
|
332 |
#define SSL_STRONG_NONE 0x00000004L
|
sl@0
|
333 |
#define SSL_EXP40 0x00000008L
|
sl@0
|
334 |
#define SSL_MICRO (SSL_EXP40)
|
sl@0
|
335 |
#define SSL_EXP56 0x00000010L
|
sl@0
|
336 |
#define SSL_MINI (SSL_EXP56)
|
sl@0
|
337 |
#define SSL_LOW 0x00000020L
|
sl@0
|
338 |
#define SSL_MEDIUM 0x00000040L
|
sl@0
|
339 |
#define SSL_HIGH 0x00000080L
|
sl@0
|
340 |
|
sl@0
|
341 |
/* we have used 000000ff - 24 bits left to go */
|
sl@0
|
342 |
|
sl@0
|
343 |
/*
|
sl@0
|
344 |
* Macros to check the export status and cipher strength for export ciphers.
|
sl@0
|
345 |
* Even though the macros for EXPORT and EXPORT40/56 have similar names,
|
sl@0
|
346 |
* their meaning is different:
|
sl@0
|
347 |
* *_EXPORT macros check the 'exportable' status.
|
sl@0
|
348 |
* *_EXPORT40/56 macros are used to check whether a certain cipher strength
|
sl@0
|
349 |
* is given.
|
sl@0
|
350 |
* Since the SSL_IS_EXPORT* and SSL_EXPORT* macros depend on the correct
|
sl@0
|
351 |
* algorithm structure element to be passed (algorithms, algo_strength) and no
|
sl@0
|
352 |
* typechecking can be done as they are all of type unsigned long, their
|
sl@0
|
353 |
* direct usage is discouraged.
|
sl@0
|
354 |
* Use the SSL_C_* macros instead.
|
sl@0
|
355 |
*/
|
sl@0
|
356 |
#define SSL_IS_EXPORT(a) ((a)&SSL_EXPORT)
|
sl@0
|
357 |
#define SSL_IS_EXPORT56(a) ((a)&SSL_EXP56)
|
sl@0
|
358 |
#define SSL_IS_EXPORT40(a) ((a)&SSL_EXP40)
|
sl@0
|
359 |
#define SSL_C_IS_EXPORT(c) SSL_IS_EXPORT((c)->algo_strength)
|
sl@0
|
360 |
#define SSL_C_IS_EXPORT56(c) SSL_IS_EXPORT56((c)->algo_strength)
|
sl@0
|
361 |
#define SSL_C_IS_EXPORT40(c) SSL_IS_EXPORT40((c)->algo_strength)
|
sl@0
|
362 |
|
sl@0
|
363 |
#define SSL_EXPORT_KEYLENGTH(a,s) (SSL_IS_EXPORT40(s) ? 5 : \
|
sl@0
|
364 |
((a)&SSL_ENC_MASK) == SSL_DES ? 8 : 7)
|
sl@0
|
365 |
#define SSL_EXPORT_PKEYLENGTH(a) (SSL_IS_EXPORT40(a) ? 512 : 1024)
|
sl@0
|
366 |
#define SSL_C_EXPORT_KEYLENGTH(c) SSL_EXPORT_KEYLENGTH((c)->algorithms, \
|
sl@0
|
367 |
(c)->algo_strength)
|
sl@0
|
368 |
#define SSL_C_EXPORT_PKEYLENGTH(c) SSL_EXPORT_PKEYLENGTH((c)->algo_strength)
|
sl@0
|
369 |
|
sl@0
|
370 |
|
sl@0
|
371 |
#define SSL_ALL 0xffffffffL
|
sl@0
|
372 |
#define SSL_ALL_CIPHERS (SSL_MKEY_MASK|SSL_AUTH_MASK|SSL_ENC_MASK|\
|
sl@0
|
373 |
SSL_MAC_MASK)
|
sl@0
|
374 |
#define SSL_ALL_STRENGTHS (SSL_EXP_MASK|SSL_STRONG_MASK)
|
sl@0
|
375 |
|
sl@0
|
376 |
/* Mostly for SSLv3 */
|
sl@0
|
377 |
#define SSL_PKEY_RSA_ENC 0
|
sl@0
|
378 |
#define SSL_PKEY_RSA_SIGN 1
|
sl@0
|
379 |
#define SSL_PKEY_DSA_SIGN 2
|
sl@0
|
380 |
#define SSL_PKEY_DH_RSA 3
|
sl@0
|
381 |
#define SSL_PKEY_DH_DSA 4
|
sl@0
|
382 |
#define SSL_PKEY_ECC 5
|
sl@0
|
383 |
#define SSL_PKEY_NUM 6
|
sl@0
|
384 |
|
sl@0
|
385 |
/* SSL_kRSA <- RSA_ENC | (RSA_TMP & RSA_SIGN) |
|
sl@0
|
386 |
* <- (EXPORT & (RSA_ENC | RSA_TMP) & RSA_SIGN)
|
sl@0
|
387 |
* SSL_kDH <- DH_ENC & (RSA_ENC | RSA_SIGN | DSA_SIGN)
|
sl@0
|
388 |
* SSL_kEDH <- RSA_ENC | RSA_SIGN | DSA_SIGN
|
sl@0
|
389 |
* SSL_aRSA <- RSA_ENC | RSA_SIGN
|
sl@0
|
390 |
* SSL_aDSS <- DSA_SIGN
|
sl@0
|
391 |
*/
|
sl@0
|
392 |
|
sl@0
|
393 |
/*
|
sl@0
|
394 |
#define CERT_INVALID 0
|
sl@0
|
395 |
#define CERT_PUBLIC_KEY 1
|
sl@0
|
396 |
#define CERT_PRIVATE_KEY 2
|
sl@0
|
397 |
*/
|
sl@0
|
398 |
|
sl@0
|
399 |
#ifndef OPENSSL_NO_EC
|
sl@0
|
400 |
/* From ECC-TLS draft, used in encoding the curve type in
|
sl@0
|
401 |
* ECParameters
|
sl@0
|
402 |
*/
|
sl@0
|
403 |
#define EXPLICIT_PRIME_CURVE_TYPE 1
|
sl@0
|
404 |
#define EXPLICIT_CHAR2_CURVE_TYPE 2
|
sl@0
|
405 |
#define NAMED_CURVE_TYPE 3
|
sl@0
|
406 |
#endif /* OPENSSL_NO_EC */
|
sl@0
|
407 |
|
sl@0
|
408 |
typedef struct cert_pkey_st
|
sl@0
|
409 |
{
|
sl@0
|
410 |
X509 *x509;
|
sl@0
|
411 |
EVP_PKEY *privatekey;
|
sl@0
|
412 |
} CERT_PKEY;
|
sl@0
|
413 |
|
sl@0
|
414 |
typedef struct cert_st
|
sl@0
|
415 |
{
|
sl@0
|
416 |
/* Current active set */
|
sl@0
|
417 |
CERT_PKEY *key; /* ALWAYS points to an element of the pkeys array
|
sl@0
|
418 |
* Probably it would make more sense to store
|
sl@0
|
419 |
* an index, not a pointer. */
|
sl@0
|
420 |
|
sl@0
|
421 |
/* The following masks are for the key and auth
|
sl@0
|
422 |
* algorithms that are supported by the certs below */
|
sl@0
|
423 |
int valid;
|
sl@0
|
424 |
unsigned long mask;
|
sl@0
|
425 |
unsigned long export_mask;
|
sl@0
|
426 |
#ifndef OPENSSL_NO_RSA
|
sl@0
|
427 |
RSA *rsa_tmp;
|
sl@0
|
428 |
RSA *(*rsa_tmp_cb)(SSL *ssl,int is_export,int keysize);
|
sl@0
|
429 |
#endif
|
sl@0
|
430 |
#ifndef OPENSSL_NO_DH
|
sl@0
|
431 |
DH *dh_tmp;
|
sl@0
|
432 |
DH *(*dh_tmp_cb)(SSL *ssl,int is_export,int keysize);
|
sl@0
|
433 |
#endif
|
sl@0
|
434 |
#ifndef OPENSSL_NO_ECDH
|
sl@0
|
435 |
EC_KEY *ecdh_tmp;
|
sl@0
|
436 |
/* Callback for generating ephemeral ECDH keys */
|
sl@0
|
437 |
EC_KEY *(*ecdh_tmp_cb)(SSL *ssl,int is_export,int keysize);
|
sl@0
|
438 |
#endif
|
sl@0
|
439 |
|
sl@0
|
440 |
CERT_PKEY pkeys[SSL_PKEY_NUM];
|
sl@0
|
441 |
|
sl@0
|
442 |
int references; /* >1 only if SSL_copy_session_id is used */
|
sl@0
|
443 |
} CERT;
|
sl@0
|
444 |
|
sl@0
|
445 |
typedef struct sess_cert_st
|
sl@0
|
446 |
{
|
sl@0
|
447 |
STACK_OF(X509) *cert_chain; /* as received from peer (not for SSL2) */
|
sl@0
|
448 |
|
sl@0
|
449 |
/* The 'peer_...' members are used only by clients. */
|
sl@0
|
450 |
int peer_cert_type;
|
sl@0
|
451 |
|
sl@0
|
452 |
CERT_PKEY *peer_key; /* points to an element of peer_pkeys (never NULL!) */
|
sl@0
|
453 |
CERT_PKEY peer_pkeys[SSL_PKEY_NUM];
|
sl@0
|
454 |
/* Obviously we don't have the private keys of these,
|
sl@0
|
455 |
* so maybe we shouldn't even use the CERT_PKEY type here. */
|
sl@0
|
456 |
|
sl@0
|
457 |
#ifndef OPENSSL_NO_RSA
|
sl@0
|
458 |
RSA *peer_rsa_tmp; /* not used for SSL 2 */
|
sl@0
|
459 |
#endif
|
sl@0
|
460 |
#ifndef OPENSSL_NO_DH
|
sl@0
|
461 |
DH *peer_dh_tmp; /* not used for SSL 2 */
|
sl@0
|
462 |
#endif
|
sl@0
|
463 |
#ifndef OPENSSL_NO_ECDH
|
sl@0
|
464 |
EC_KEY *peer_ecdh_tmp;
|
sl@0
|
465 |
#endif
|
sl@0
|
466 |
|
sl@0
|
467 |
int references; /* actually always 1 at the moment */
|
sl@0
|
468 |
} SESS_CERT;
|
sl@0
|
469 |
|
sl@0
|
470 |
|
sl@0
|
471 |
/*#define MAC_DEBUG */
|
sl@0
|
472 |
|
sl@0
|
473 |
/*#define ERR_DEBUG */
|
sl@0
|
474 |
/*#define ABORT_DEBUG */
|
sl@0
|
475 |
/*#define PKT_DEBUG 1 */
|
sl@0
|
476 |
/*#define DES_DEBUG */
|
sl@0
|
477 |
/*#define DES_OFB_DEBUG */
|
sl@0
|
478 |
/*#define SSL_DEBUG */
|
sl@0
|
479 |
/*#define RSA_DEBUG */
|
sl@0
|
480 |
/*#define IDEA_DEBUG */
|
sl@0
|
481 |
|
sl@0
|
482 |
#define FP_ICC (int (*)(const void *,const void *))
|
sl@0
|
483 |
#define ssl_put_cipher_by_char(ssl,ciph,ptr) \
|
sl@0
|
484 |
((ssl)->method->put_cipher_by_char((ciph),(ptr)))
|
sl@0
|
485 |
#define ssl_get_cipher_by_char(ssl,ptr) \
|
sl@0
|
486 |
((ssl)->method->get_cipher_by_char(ptr))
|
sl@0
|
487 |
|
sl@0
|
488 |
#ifndef EMULATOR
|
sl@0
|
489 |
/* This is for the SSLv3/TLSv1.0 differences in crypto/hash stuff
|
sl@0
|
490 |
* It is a bit of a mess of functions, but hell, think of it as
|
sl@0
|
491 |
* an opaque structure :-) */
|
sl@0
|
492 |
typedef struct ssl3_enc_method
|
sl@0
|
493 |
{
|
sl@0
|
494 |
int (*enc)(SSL *, int);
|
sl@0
|
495 |
int (*mac)(SSL *, unsigned char *, int);
|
sl@0
|
496 |
int (*setup_key_block)(SSL *);
|
sl@0
|
497 |
int (*generate_master_secret)(SSL *, unsigned char *, unsigned char *, int);
|
sl@0
|
498 |
int (*change_cipher_state)(SSL *, int);
|
sl@0
|
499 |
int (*final_finish_mac)(SSL *, EVP_MD_CTX *, EVP_MD_CTX *, const char *, int, unsigned char *);
|
sl@0
|
500 |
int finish_mac_length;
|
sl@0
|
501 |
int (*cert_verify_mac)(SSL *, EVP_MD_CTX *, unsigned char *);
|
sl@0
|
502 |
const char *client_finished_label;
|
sl@0
|
503 |
int client_finished_label_len;
|
sl@0
|
504 |
const char *server_finished_label;
|
sl@0
|
505 |
int server_finished_label_len;
|
sl@0
|
506 |
int (*alert_value)(int);
|
sl@0
|
507 |
} SSL3_ENC_METHOD;
|
sl@0
|
508 |
#endif
|
sl@0
|
509 |
/* Used for holding the relevant compression methods loaded into SSL_CTX */
|
sl@0
|
510 |
typedef struct ssl3_comp_st
|
sl@0
|
511 |
{
|
sl@0
|
512 |
int comp_id; /* The identifier byte for this compression type */
|
sl@0
|
513 |
char *name; /* Text name used for the compression type */
|
sl@0
|
514 |
COMP_METHOD *method; /* The method :-) */
|
sl@0
|
515 |
} SSL3_COMP;
|
sl@0
|
516 |
|
sl@0
|
517 |
#ifndef EMULATOR
|
sl@0
|
518 |
|
sl@0
|
519 |
extern SSL3_ENC_METHOD ssl3_undef_enc_method;
|
sl@0
|
520 |
OPENSSL_EXTERN SSL_CIPHER ssl2_ciphers[];
|
sl@0
|
521 |
OPENSSL_EXTERN SSL_CIPHER ssl3_ciphers[];
|
sl@0
|
522 |
|
sl@0
|
523 |
#else
|
sl@0
|
524 |
|
sl@0
|
525 |
//GET_GLOBAL_VAR_FROM_TLS(ssl3_undef_enc_method,ssl_lib,SSL3_ENC_METHOD)
|
sl@0
|
526 |
//#define ssl3_undef_enc_method (GET_WSD_VAR_NAME(ssl3_undef_enc_method,ssl_lib,g)())
|
sl@0
|
527 |
|
sl@0
|
528 |
|
sl@0
|
529 |
//GET_GLOBAL_ARRAY_FROM_TLS(ssl2_ciphers,s2_lib,SSL_CIPHER)
|
sl@0
|
530 |
|
sl@0
|
531 |
//#define ssl2_ciphers (GET_WSD_VAR_NAME(ssl2_ciphers,s2_lib,g)())
|
sl@0
|
532 |
|
sl@0
|
533 |
|
sl@0
|
534 |
//GET_GLOBAL_ARRAY_FROM_TLS(ssl3_ciphers,s3_lib,SSL_CIPHER)
|
sl@0
|
535 |
|
sl@0
|
536 |
//#define ssl3_ciphers (GET_WSD_VAR_NAME(ssl3_ciphers,s3_lib,g)())
|
sl@0
|
537 |
|
sl@0
|
538 |
#endif
|
sl@0
|
539 |
|
sl@0
|
540 |
//extern const SSL3_ENC_METHOD ssl3_undef_enc_method;
|
sl@0
|
541 |
//OPENSSL_EXTERN const SSL_CIPHER ssl2_ciphers[];
|
sl@0
|
542 |
//OPENSSL_EXTERN const SSL_CIPHER ssl3_ciphers[];
|
sl@0
|
543 |
|
sl@0
|
544 |
//#endif
|
sl@0
|
545 |
|
sl@0
|
546 |
SSL_METHOD *ssl_bad_method(int ver);
|
sl@0
|
547 |
SSL_METHOD *sslv2_base_method(void);
|
sl@0
|
548 |
SSL_METHOD *sslv23_base_method(void);
|
sl@0
|
549 |
SSL_METHOD *sslv3_base_method(void);
|
sl@0
|
550 |
|
sl@0
|
551 |
|
sl@0
|
552 |
|
sl@0
|
553 |
#ifndef EMULATOR
|
sl@0
|
554 |
|
sl@0
|
555 |
extern SSL3_ENC_METHOD DTLSv1_enc_data;
|
sl@0
|
556 |
extern SSL3_ENC_METHOD TLSv1_enc_data;
|
sl@0
|
557 |
extern SSL3_ENC_METHOD SSLv3_enc_data;
|
sl@0
|
558 |
|
sl@0
|
559 |
#endif
|
sl@0
|
560 |
|
sl@0
|
561 |
#ifdef EMULATOR
|
sl@0
|
562 |
|
sl@0
|
563 |
#define IMPLEMENT_ssl23_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
564 |
SSL_METHOD *func_name(void) \
|
sl@0
|
565 |
{ \
|
sl@0
|
566 |
return &func_name##_data; \
|
sl@0
|
567 |
}\
|
sl@0
|
568 |
const SSL_METHOD temp_##func_name##_data= { \
|
sl@0
|
569 |
TLS1_VERSION, \
|
sl@0
|
570 |
tls1_new, \
|
sl@0
|
571 |
tls1_clear, \
|
sl@0
|
572 |
tls1_free, \
|
sl@0
|
573 |
s_accept, \
|
sl@0
|
574 |
s_connect, \
|
sl@0
|
575 |
ssl23_read, \
|
sl@0
|
576 |
ssl23_peek, \
|
sl@0
|
577 |
ssl23_write, \
|
sl@0
|
578 |
ssl_undefined_function, \
|
sl@0
|
579 |
ssl_undefined_function, \
|
sl@0
|
580 |
ssl_ok, \
|
sl@0
|
581 |
ssl3_get_message, \
|
sl@0
|
582 |
ssl3_read_bytes, \
|
sl@0
|
583 |
ssl3_write_bytes, \
|
sl@0
|
584 |
ssl3_dispatch_alert, \
|
sl@0
|
585 |
ssl3_ctrl, \
|
sl@0
|
586 |
ssl3_ctx_ctrl, \
|
sl@0
|
587 |
ssl23_get_cipher_by_char, \
|
sl@0
|
588 |
ssl23_put_cipher_by_char, \
|
sl@0
|
589 |
ssl_undefined_const_function, \
|
sl@0
|
590 |
ssl23_num_ciphers, \
|
sl@0
|
591 |
ssl23_get_cipher, \
|
sl@0
|
592 |
s_get_meth, \
|
sl@0
|
593 |
ssl23_default_timeout, \
|
sl@0
|
594 |
/*&ssl3_undef_enc_method*/NULL, \
|
sl@0
|
595 |
ssl_undefined_void_function, \
|
sl@0
|
596 |
ssl3_callback_ctrl, \
|
sl@0
|
597 |
ssl3_ctx_callback_ctrl, \
|
sl@0
|
598 |
};
|
sl@0
|
599 |
|
sl@0
|
600 |
|
sl@0
|
601 |
#define IMPLEMENT_ssl2_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
602 |
\
|
sl@0
|
603 |
SSL_METHOD *func_name(void) \
|
sl@0
|
604 |
{ \
|
sl@0
|
605 |
return &func_name##_data; \
|
sl@0
|
606 |
}\
|
sl@0
|
607 |
const SSL_METHOD temp_##func_name##_data= { \
|
sl@0
|
608 |
SSL2_VERSION, \
|
sl@0
|
609 |
ssl2_new, /* local */ \
|
sl@0
|
610 |
ssl2_clear, /* local */ \
|
sl@0
|
611 |
ssl2_free, /* local */ \
|
sl@0
|
612 |
s_accept, \
|
sl@0
|
613 |
s_connect, \
|
sl@0
|
614 |
ssl2_read, \
|
sl@0
|
615 |
ssl2_peek, \
|
sl@0
|
616 |
ssl2_write, \
|
sl@0
|
617 |
ssl2_shutdown, \
|
sl@0
|
618 |
ssl_ok, /* NULL - renegotiate */ \
|
sl@0
|
619 |
ssl_ok, /* NULL - check renegotiate */ \
|
sl@0
|
620 |
NULL, /* NULL - ssl_get_message */ \
|
sl@0
|
621 |
NULL, /* NULL - ssl_get_record */ \
|
sl@0
|
622 |
NULL, /* NULL - ssl_write_bytes */ \
|
sl@0
|
623 |
NULL, /* NULL - dispatch_alert */ \
|
sl@0
|
624 |
ssl2_ctrl, /* local */ \
|
sl@0
|
625 |
ssl2_ctx_ctrl, /* local */ \
|
sl@0
|
626 |
ssl2_get_cipher_by_char, \
|
sl@0
|
627 |
ssl2_put_cipher_by_char, \
|
sl@0
|
628 |
ssl2_pending, \
|
sl@0
|
629 |
ssl2_num_ciphers, \
|
sl@0
|
630 |
ssl2_get_cipher, \
|
sl@0
|
631 |
s_get_meth, \
|
sl@0
|
632 |
ssl2_default_timeout, \
|
sl@0
|
633 |
/*&ssl3_undef_enc_method*/NULL, \
|
sl@0
|
634 |
ssl_undefined_void_function, \
|
sl@0
|
635 |
ssl2_callback_ctrl, /* local */ \
|
sl@0
|
636 |
ssl2_ctx_callback_ctrl, /* local */ \
|
sl@0
|
637 |
};
|
sl@0
|
638 |
|
sl@0
|
639 |
#define IMPLEMENT_dtls1_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
640 |
\
|
sl@0
|
641 |
SSL_METHOD *func_name(void) \
|
sl@0
|
642 |
{ \
|
sl@0
|
643 |
return &func_name##_data; \
|
sl@0
|
644 |
}\
|
sl@0
|
645 |
const SSL_METHOD temp_##func_name##_data= { \
|
sl@0
|
646 |
DTLS1_VERSION, \
|
sl@0
|
647 |
dtls1_new, \
|
sl@0
|
648 |
dtls1_clear, \
|
sl@0
|
649 |
dtls1_free, \
|
sl@0
|
650 |
s_accept, \
|
sl@0
|
651 |
s_connect, \
|
sl@0
|
652 |
ssl3_read, \
|
sl@0
|
653 |
ssl3_peek, \
|
sl@0
|
654 |
ssl3_write, \
|
sl@0
|
655 |
ssl3_shutdown, \
|
sl@0
|
656 |
ssl3_renegotiate, \
|
sl@0
|
657 |
ssl3_renegotiate_check, \
|
sl@0
|
658 |
dtls1_get_message, \
|
sl@0
|
659 |
dtls1_read_bytes, \
|
sl@0
|
660 |
dtls1_write_app_data_bytes, \
|
sl@0
|
661 |
dtls1_dispatch_alert, \
|
sl@0
|
662 |
ssl3_ctrl, \
|
sl@0
|
663 |
ssl3_ctx_ctrl, \
|
sl@0
|
664 |
ssl3_get_cipher_by_char, \
|
sl@0
|
665 |
ssl3_put_cipher_by_char, \
|
sl@0
|
666 |
ssl3_pending, \
|
sl@0
|
667 |
ssl3_num_ciphers, \
|
sl@0
|
668 |
ssl3_get_cipher, \
|
sl@0
|
669 |
s_get_meth, \
|
sl@0
|
670 |
dtls1_default_timeout, \
|
sl@0
|
671 |
/*&DTLSv1_enc_data*/NULL,\
|
sl@0
|
672 |
ssl_undefined_void_function, \
|
sl@0
|
673 |
ssl3_callback_ctrl, \
|
sl@0
|
674 |
ssl3_ctx_callback_ctrl, \
|
sl@0
|
675 |
};
|
sl@0
|
676 |
|
sl@0
|
677 |
|
sl@0
|
678 |
|
sl@0
|
679 |
#define IMPLEMENT_ssl3_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
680 |
\
|
sl@0
|
681 |
SSL_METHOD *func_name(void) \
|
sl@0
|
682 |
{ \
|
sl@0
|
683 |
return &func_name##_data; \
|
sl@0
|
684 |
}\
|
sl@0
|
685 |
const SSL_METHOD temp_##func_name##_data= { \
|
sl@0
|
686 |
SSL3_VERSION, \
|
sl@0
|
687 |
ssl3_new, \
|
sl@0
|
688 |
ssl3_clear, \
|
sl@0
|
689 |
ssl3_free, \
|
sl@0
|
690 |
s_accept, \
|
sl@0
|
691 |
s_connect, \
|
sl@0
|
692 |
ssl3_read, \
|
sl@0
|
693 |
ssl3_peek, \
|
sl@0
|
694 |
ssl3_write, \
|
sl@0
|
695 |
ssl3_shutdown, \
|
sl@0
|
696 |
ssl3_renegotiate, \
|
sl@0
|
697 |
ssl3_renegotiate_check, \
|
sl@0
|
698 |
ssl3_get_message, \
|
sl@0
|
699 |
ssl3_read_bytes, \
|
sl@0
|
700 |
ssl3_write_bytes, \
|
sl@0
|
701 |
ssl3_dispatch_alert, \
|
sl@0
|
702 |
ssl3_ctrl, \
|
sl@0
|
703 |
ssl3_ctx_ctrl, \
|
sl@0
|
704 |
ssl3_get_cipher_by_char, \
|
sl@0
|
705 |
ssl3_put_cipher_by_char, \
|
sl@0
|
706 |
ssl3_pending, \
|
sl@0
|
707 |
ssl3_num_ciphers, \
|
sl@0
|
708 |
ssl3_get_cipher, \
|
sl@0
|
709 |
s_get_meth, \
|
sl@0
|
710 |
ssl3_default_timeout, \
|
sl@0
|
711 |
/*&SSLv3_enc_data*/NULL, \
|
sl@0
|
712 |
ssl_undefined_void_function, \
|
sl@0
|
713 |
ssl3_callback_ctrl, \
|
sl@0
|
714 |
ssl3_ctx_callback_ctrl, \
|
sl@0
|
715 |
};
|
sl@0
|
716 |
|
sl@0
|
717 |
#define IMPLEMENT_tls1_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
718 |
\
|
sl@0
|
719 |
SSL_METHOD *func_name(void) \
|
sl@0
|
720 |
{ \
|
sl@0
|
721 |
return &func_name##_data; \
|
sl@0
|
722 |
}\
|
sl@0
|
723 |
const SSL_METHOD temp_##func_name##_data= { \
|
sl@0
|
724 |
TLS1_VERSION, \
|
sl@0
|
725 |
tls1_new, \
|
sl@0
|
726 |
tls1_clear, \
|
sl@0
|
727 |
tls1_free, \
|
sl@0
|
728 |
s_accept, \
|
sl@0
|
729 |
s_connect, \
|
sl@0
|
730 |
ssl3_read, \
|
sl@0
|
731 |
ssl3_peek, \
|
sl@0
|
732 |
ssl3_write, \
|
sl@0
|
733 |
ssl3_shutdown, \
|
sl@0
|
734 |
ssl3_renegotiate, \
|
sl@0
|
735 |
ssl3_renegotiate_check, \
|
sl@0
|
736 |
ssl3_get_message, \
|
sl@0
|
737 |
ssl3_read_bytes, \
|
sl@0
|
738 |
ssl3_write_bytes, \
|
sl@0
|
739 |
ssl3_dispatch_alert, \
|
sl@0
|
740 |
ssl3_ctrl, \
|
sl@0
|
741 |
ssl3_ctx_ctrl, \
|
sl@0
|
742 |
ssl3_get_cipher_by_char, \
|
sl@0
|
743 |
ssl3_put_cipher_by_char, \
|
sl@0
|
744 |
ssl3_pending, \
|
sl@0
|
745 |
ssl3_num_ciphers, \
|
sl@0
|
746 |
ssl3_get_cipher, \
|
sl@0
|
747 |
s_get_meth, \
|
sl@0
|
748 |
tls1_default_timeout, \
|
sl@0
|
749 |
/* &TLSv1_enc_data */NULL, \
|
sl@0
|
750 |
ssl_undefined_void_function, \
|
sl@0
|
751 |
ssl3_callback_ctrl, \
|
sl@0
|
752 |
ssl3_ctx_callback_ctrl, \
|
sl@0
|
753 |
};
|
sl@0
|
754 |
|
sl@0
|
755 |
#else /* #endif *//* EMULATOR */
|
sl@0
|
756 |
|
sl@0
|
757 |
|
sl@0
|
758 |
#define IMPLEMENT_tls1_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
759 |
SSL_METHOD *func_name(void) \
|
sl@0
|
760 |
{ \
|
sl@0
|
761 |
static SSL_METHOD func_name##_data= { \
|
sl@0
|
762 |
TLS1_VERSION, \
|
sl@0
|
763 |
tls1_new, \
|
sl@0
|
764 |
tls1_clear, \
|
sl@0
|
765 |
tls1_free, \
|
sl@0
|
766 |
s_accept, \
|
sl@0
|
767 |
s_connect, \
|
sl@0
|
768 |
ssl3_read, \
|
sl@0
|
769 |
ssl3_peek, \
|
sl@0
|
770 |
ssl3_write, \
|
sl@0
|
771 |
ssl3_shutdown, \
|
sl@0
|
772 |
ssl3_renegotiate, \
|
sl@0
|
773 |
ssl3_renegotiate_check, \
|
sl@0
|
774 |
ssl3_get_message, \
|
sl@0
|
775 |
ssl3_read_bytes, \
|
sl@0
|
776 |
ssl3_write_bytes, \
|
sl@0
|
777 |
ssl3_dispatch_alert, \
|
sl@0
|
778 |
ssl3_ctrl, \
|
sl@0
|
779 |
ssl3_ctx_ctrl, \
|
sl@0
|
780 |
ssl3_get_cipher_by_char, \
|
sl@0
|
781 |
ssl3_put_cipher_by_char, \
|
sl@0
|
782 |
ssl3_pending, \
|
sl@0
|
783 |
ssl3_num_ciphers, \
|
sl@0
|
784 |
ssl3_get_cipher, \
|
sl@0
|
785 |
s_get_meth, \
|
sl@0
|
786 |
tls1_default_timeout, \
|
sl@0
|
787 |
&TLSv1_enc_data, \
|
sl@0
|
788 |
ssl_undefined_void_function, \
|
sl@0
|
789 |
ssl3_callback_ctrl, \
|
sl@0
|
790 |
ssl3_ctx_callback_ctrl, \
|
sl@0
|
791 |
}; \
|
sl@0
|
792 |
return &func_name##_data; \
|
sl@0
|
793 |
}
|
sl@0
|
794 |
|
sl@0
|
795 |
#define IMPLEMENT_ssl3_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
796 |
SSL_METHOD *func_name(void) \
|
sl@0
|
797 |
{ \
|
sl@0
|
798 |
static SSL_METHOD func_name##_data= { \
|
sl@0
|
799 |
SSL3_VERSION, \
|
sl@0
|
800 |
ssl3_new, \
|
sl@0
|
801 |
ssl3_clear, \
|
sl@0
|
802 |
ssl3_free, \
|
sl@0
|
803 |
s_accept, \
|
sl@0
|
804 |
s_connect, \
|
sl@0
|
805 |
ssl3_read, \
|
sl@0
|
806 |
ssl3_peek, \
|
sl@0
|
807 |
ssl3_write, \
|
sl@0
|
808 |
ssl3_shutdown, \
|
sl@0
|
809 |
ssl3_renegotiate, \
|
sl@0
|
810 |
ssl3_renegotiate_check, \
|
sl@0
|
811 |
ssl3_get_message, \
|
sl@0
|
812 |
ssl3_read_bytes, \
|
sl@0
|
813 |
ssl3_write_bytes, \
|
sl@0
|
814 |
ssl3_dispatch_alert, \
|
sl@0
|
815 |
ssl3_ctrl, \
|
sl@0
|
816 |
ssl3_ctx_ctrl, \
|
sl@0
|
817 |
ssl3_get_cipher_by_char, \
|
sl@0
|
818 |
ssl3_put_cipher_by_char, \
|
sl@0
|
819 |
ssl3_pending, \
|
sl@0
|
820 |
ssl3_num_ciphers, \
|
sl@0
|
821 |
ssl3_get_cipher, \
|
sl@0
|
822 |
s_get_meth, \
|
sl@0
|
823 |
ssl3_default_timeout, \
|
sl@0
|
824 |
&SSLv3_enc_data, \
|
sl@0
|
825 |
ssl_undefined_void_function, \
|
sl@0
|
826 |
ssl3_callback_ctrl, \
|
sl@0
|
827 |
ssl3_ctx_callback_ctrl, \
|
sl@0
|
828 |
}; \
|
sl@0
|
829 |
return &func_name##_data; \
|
sl@0
|
830 |
}
|
sl@0
|
831 |
|
sl@0
|
832 |
|
sl@0
|
833 |
#define IMPLEMENT_ssl23_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
834 |
SSL_METHOD *func_name(void) \
|
sl@0
|
835 |
{ \
|
sl@0
|
836 |
static SSL_METHOD func_name##_data= { \
|
sl@0
|
837 |
TLS1_VERSION, \
|
sl@0
|
838 |
tls1_new, \
|
sl@0
|
839 |
tls1_clear, \
|
sl@0
|
840 |
tls1_free, \
|
sl@0
|
841 |
s_accept, \
|
sl@0
|
842 |
s_connect, \
|
sl@0
|
843 |
ssl23_read, \
|
sl@0
|
844 |
ssl23_peek, \
|
sl@0
|
845 |
ssl23_write, \
|
sl@0
|
846 |
ssl_undefined_function, \
|
sl@0
|
847 |
ssl_undefined_function, \
|
sl@0
|
848 |
ssl_ok, \
|
sl@0
|
849 |
ssl3_get_message, \
|
sl@0
|
850 |
ssl3_read_bytes, \
|
sl@0
|
851 |
ssl3_write_bytes, \
|
sl@0
|
852 |
ssl3_dispatch_alert, \
|
sl@0
|
853 |
ssl3_ctrl, \
|
sl@0
|
854 |
ssl3_ctx_ctrl, \
|
sl@0
|
855 |
ssl23_get_cipher_by_char, \
|
sl@0
|
856 |
ssl23_put_cipher_by_char, \
|
sl@0
|
857 |
ssl_undefined_const_function, \
|
sl@0
|
858 |
ssl23_num_ciphers, \
|
sl@0
|
859 |
ssl23_get_cipher, \
|
sl@0
|
860 |
s_get_meth, \
|
sl@0
|
861 |
ssl23_default_timeout, \
|
sl@0
|
862 |
&ssl3_undef_enc_method, \
|
sl@0
|
863 |
ssl_undefined_void_function, \
|
sl@0
|
864 |
ssl3_callback_ctrl, \
|
sl@0
|
865 |
ssl3_ctx_callback_ctrl, \
|
sl@0
|
866 |
}; \
|
sl@0
|
867 |
return &func_name##_data; \
|
sl@0
|
868 |
}
|
sl@0
|
869 |
|
sl@0
|
870 |
|
sl@0
|
871 |
#define IMPLEMENT_ssl2_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
872 |
SSL_METHOD *func_name(void) \
|
sl@0
|
873 |
{ \
|
sl@0
|
874 |
static SSL_METHOD func_name##_data= { \
|
sl@0
|
875 |
SSL2_VERSION, \
|
sl@0
|
876 |
ssl2_new, /* local */ \
|
sl@0
|
877 |
ssl2_clear, /* local */ \
|
sl@0
|
878 |
ssl2_free, /* local */ \
|
sl@0
|
879 |
s_accept, \
|
sl@0
|
880 |
s_connect, \
|
sl@0
|
881 |
ssl2_read, \
|
sl@0
|
882 |
ssl2_peek, \
|
sl@0
|
883 |
ssl2_write, \
|
sl@0
|
884 |
ssl2_shutdown, \
|
sl@0
|
885 |
ssl_ok, /* NULL - renegotiate */ \
|
sl@0
|
886 |
ssl_ok, /* NULL - check renegotiate */ \
|
sl@0
|
887 |
NULL, /* NULL - ssl_get_message */ \
|
sl@0
|
888 |
NULL, /* NULL - ssl_get_record */ \
|
sl@0
|
889 |
NULL, /* NULL - ssl_write_bytes */ \
|
sl@0
|
890 |
NULL, /* NULL - dispatch_alert */ \
|
sl@0
|
891 |
ssl2_ctrl, /* local */ \
|
sl@0
|
892 |
ssl2_ctx_ctrl, /* local */ \
|
sl@0
|
893 |
ssl2_get_cipher_by_char, \
|
sl@0
|
894 |
ssl2_put_cipher_by_char, \
|
sl@0
|
895 |
ssl2_pending, \
|
sl@0
|
896 |
ssl2_num_ciphers, \
|
sl@0
|
897 |
ssl2_get_cipher, \
|
sl@0
|
898 |
s_get_meth, \
|
sl@0
|
899 |
ssl2_default_timeout, \
|
sl@0
|
900 |
&ssl3_undef_enc_method, \
|
sl@0
|
901 |
ssl_undefined_void_function, \
|
sl@0
|
902 |
ssl2_callback_ctrl, /* local */ \
|
sl@0
|
903 |
ssl2_ctx_callback_ctrl, /* local */ \
|
sl@0
|
904 |
}; \
|
sl@0
|
905 |
return &func_name##_data; \
|
sl@0
|
906 |
}
|
sl@0
|
907 |
|
sl@0
|
908 |
|
sl@0
|
909 |
#define IMPLEMENT_dtls1_meth_func(func_name, s_accept, s_connect, s_get_meth) \
|
sl@0
|
910 |
SSL_METHOD *func_name(void) \
|
sl@0
|
911 |
{ \
|
sl@0
|
912 |
static SSL_METHOD func_name##_data= { \
|
sl@0
|
913 |
DTLS1_VERSION, \
|
sl@0
|
914 |
dtls1_new, \
|
sl@0
|
915 |
dtls1_clear, \
|
sl@0
|
916 |
dtls1_free, \
|
sl@0
|
917 |
s_accept, \
|
sl@0
|
918 |
s_connect, \
|
sl@0
|
919 |
ssl3_read, \
|
sl@0
|
920 |
ssl3_peek, \
|
sl@0
|
921 |
ssl3_write, \
|
sl@0
|
922 |
ssl3_shutdown, \
|
sl@0
|
923 |
ssl3_renegotiate, \
|
sl@0
|
924 |
ssl3_renegotiate_check, \
|
sl@0
|
925 |
dtls1_get_message, \
|
sl@0
|
926 |
dtls1_read_bytes, \
|
sl@0
|
927 |
dtls1_write_app_data_bytes, \
|
sl@0
|
928 |
dtls1_dispatch_alert, \
|
sl@0
|
929 |
ssl3_ctrl, \
|
sl@0
|
930 |
ssl3_ctx_ctrl, \
|
sl@0
|
931 |
ssl3_get_cipher_by_char, \
|
sl@0
|
932 |
ssl3_put_cipher_by_char, \
|
sl@0
|
933 |
ssl3_pending, \
|
sl@0
|
934 |
ssl3_num_ciphers, \
|
sl@0
|
935 |
ssl3_get_cipher, \
|
sl@0
|
936 |
s_get_meth, \
|
sl@0
|
937 |
dtls1_default_timeout, \
|
sl@0
|
938 |
&DTLSv1_enc_data, \
|
sl@0
|
939 |
ssl_undefined_void_function, \
|
sl@0
|
940 |
ssl3_callback_ctrl, \
|
sl@0
|
941 |
ssl3_ctx_callback_ctrl, \
|
sl@0
|
942 |
}; \
|
sl@0
|
943 |
return &func_name##_data; \
|
sl@0
|
944 |
}
|
sl@0
|
945 |
|
sl@0
|
946 |
|
sl@0
|
947 |
#endif /* EMULATOR */
|
sl@0
|
948 |
|
sl@0
|
949 |
void ssl_clear_cipher_ctx(SSL *s);
|
sl@0
|
950 |
int ssl_clear_bad_session(SSL *s);
|
sl@0
|
951 |
CERT *ssl_cert_new(void);
|
sl@0
|
952 |
CERT *ssl_cert_dup(CERT *cert);
|
sl@0
|
953 |
int ssl_cert_inst(CERT **o);
|
sl@0
|
954 |
void ssl_cert_free(CERT *c);
|
sl@0
|
955 |
SESS_CERT *ssl_sess_cert_new(void);
|
sl@0
|
956 |
void ssl_sess_cert_free(SESS_CERT *sc);
|
sl@0
|
957 |
int ssl_set_peer_cert_type(SESS_CERT *c, int type);
|
sl@0
|
958 |
int ssl_get_new_session(SSL *s, int session);
|
sl@0
|
959 |
int ssl_get_prev_session(SSL *s, unsigned char *session,int len, const unsigned char *limit);
|
sl@0
|
960 |
int ssl_cipher_id_cmp(const SSL_CIPHER *a,const SSL_CIPHER *b);
|
sl@0
|
961 |
int ssl_cipher_ptr_id_cmp(const SSL_CIPHER * const *ap,
|
sl@0
|
962 |
const SSL_CIPHER * const *bp);
|
sl@0
|
963 |
STACK_OF(SSL_CIPHER) *ssl_bytes_to_cipher_list(SSL *s,unsigned char *p,int num,
|
sl@0
|
964 |
STACK_OF(SSL_CIPHER) **skp);
|
sl@0
|
965 |
int ssl_cipher_list_to_bytes(SSL *s,STACK_OF(SSL_CIPHER) *sk,unsigned char *p,
|
sl@0
|
966 |
int (*put_cb)(const SSL_CIPHER *, unsigned char *));
|
sl@0
|
967 |
STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *meth,
|
sl@0
|
968 |
STACK_OF(SSL_CIPHER) **pref,
|
sl@0
|
969 |
STACK_OF(SSL_CIPHER) **sorted,
|
sl@0
|
970 |
const char *rule_str);
|
sl@0
|
971 |
void ssl_update_cache(SSL *s, int mode);
|
sl@0
|
972 |
int ssl_cipher_get_evp(const SSL_SESSION *s,const EVP_CIPHER **enc,
|
sl@0
|
973 |
const EVP_MD **md,SSL_COMP **comp);
|
sl@0
|
974 |
int ssl_verify_cert_chain(SSL *s,STACK_OF(X509) *sk);
|
sl@0
|
975 |
int ssl_undefined_function(SSL *s);
|
sl@0
|
976 |
int ssl_undefined_void_function(void);
|
sl@0
|
977 |
int ssl_undefined_const_function(const SSL *s);
|
sl@0
|
978 |
X509 *ssl_get_server_send_cert(SSL *);
|
sl@0
|
979 |
EVP_PKEY *ssl_get_sign_pkey(SSL *,SSL_CIPHER *);
|
sl@0
|
980 |
int ssl_cert_type(X509 *x,EVP_PKEY *pkey);
|
sl@0
|
981 |
void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher);
|
sl@0
|
982 |
STACK_OF(SSL_CIPHER) *ssl_get_ciphers_by_id(SSL *s);
|
sl@0
|
983 |
int ssl_verify_alarm_type(long type);
|
sl@0
|
984 |
void ssl_load_ciphers(void);
|
sl@0
|
985 |
|
sl@0
|
986 |
int ssl2_enc_init(SSL *s, int client);
|
sl@0
|
987 |
int ssl2_generate_key_material(SSL *s);
|
sl@0
|
988 |
void ssl2_enc(SSL *s,int send_data);
|
sl@0
|
989 |
void ssl2_mac(SSL *s,unsigned char *mac,int send_data);
|
sl@0
|
990 |
SSL_CIPHER *ssl2_get_cipher_by_char(const unsigned char *p);
|
sl@0
|
991 |
int ssl2_put_cipher_by_char(const SSL_CIPHER *c,unsigned char *p);
|
sl@0
|
992 |
int ssl2_part_read(SSL *s, unsigned long f, int i);
|
sl@0
|
993 |
int ssl2_do_write(SSL *s);
|
sl@0
|
994 |
int ssl2_set_certificate(SSL *s, int type, int len, const unsigned char *data);
|
sl@0
|
995 |
void ssl2_return_error(SSL *s,int reason);
|
sl@0
|
996 |
void ssl2_write_error(SSL *s);
|
sl@0
|
997 |
int ssl2_num_ciphers(void);
|
sl@0
|
998 |
SSL_CIPHER *ssl2_get_cipher(unsigned int u);
|
sl@0
|
999 |
int ssl2_new(SSL *s);
|
sl@0
|
1000 |
void ssl2_free(SSL *s);
|
sl@0
|
1001 |
int ssl2_accept(SSL *s);
|
sl@0
|
1002 |
int ssl2_connect(SSL *s);
|
sl@0
|
1003 |
int ssl2_read(SSL *s, void *buf, int len);
|
sl@0
|
1004 |
int ssl2_peek(SSL *s, void *buf, int len);
|
sl@0
|
1005 |
int ssl2_write(SSL *s, const void *buf, int len);
|
sl@0
|
1006 |
int ssl2_shutdown(SSL *s);
|
sl@0
|
1007 |
void ssl2_clear(SSL *s);
|
sl@0
|
1008 |
long ssl2_ctrl(SSL *s,int cmd, long larg, void *parg);
|
sl@0
|
1009 |
long ssl2_ctx_ctrl(SSL_CTX *s,int cmd, long larg, void *parg);
|
sl@0
|
1010 |
long ssl2_callback_ctrl(SSL *s,int cmd, void (*fp)(void));
|
sl@0
|
1011 |
long ssl2_ctx_callback_ctrl(SSL_CTX *s,int cmd, void (*fp)(void));
|
sl@0
|
1012 |
int ssl2_pending(const SSL *s);
|
sl@0
|
1013 |
long ssl2_default_timeout(void );
|
sl@0
|
1014 |
|
sl@0
|
1015 |
SSL_CIPHER *ssl3_get_cipher_by_char(const unsigned char *p);
|
sl@0
|
1016 |
int ssl3_put_cipher_by_char(const SSL_CIPHER *c,unsigned char *p);
|
sl@0
|
1017 |
void ssl3_init_finished_mac(SSL *s);
|
sl@0
|
1018 |
int ssl3_send_server_certificate(SSL *s);
|
sl@0
|
1019 |
int ssl3_send_newsession_ticket(SSL *s);
|
sl@0
|
1020 |
int ssl3_get_finished(SSL *s,int state_a,int state_b);
|
sl@0
|
1021 |
int ssl3_setup_key_block(SSL *s);
|
sl@0
|
1022 |
int ssl3_send_change_cipher_spec(SSL *s,int state_a,int state_b);
|
sl@0
|
1023 |
int ssl3_change_cipher_state(SSL *s,int which);
|
sl@0
|
1024 |
void ssl3_cleanup_key_block(SSL *s);
|
sl@0
|
1025 |
int ssl3_do_write(SSL *s,int type);
|
sl@0
|
1026 |
void ssl3_send_alert(SSL *s,int level, int desc);
|
sl@0
|
1027 |
int ssl3_generate_master_secret(SSL *s, unsigned char *out,
|
sl@0
|
1028 |
unsigned char *p, int len);
|
sl@0
|
1029 |
int ssl3_get_req_cert_type(SSL *s,unsigned char *p);
|
sl@0
|
1030 |
long ssl3_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok);
|
sl@0
|
1031 |
int ssl3_send_finished(SSL *s, int a, int b, const char *sender,int slen);
|
sl@0
|
1032 |
int ssl3_num_ciphers(void);
|
sl@0
|
1033 |
SSL_CIPHER *ssl3_get_cipher(unsigned int u);
|
sl@0
|
1034 |
int ssl3_renegotiate(SSL *ssl);
|
sl@0
|
1035 |
int ssl3_renegotiate_check(SSL *ssl);
|
sl@0
|
1036 |
int ssl3_dispatch_alert(SSL *s);
|
sl@0
|
1037 |
int ssl3_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek);
|
sl@0
|
1038 |
int ssl3_write_bytes(SSL *s, int type, const void *buf, int len);
|
sl@0
|
1039 |
int ssl3_final_finish_mac(SSL *s, EVP_MD_CTX *ctx1, EVP_MD_CTX *ctx2,
|
sl@0
|
1040 |
const char *sender, int slen,unsigned char *p);
|
sl@0
|
1041 |
int ssl3_cert_verify_mac(SSL *s, EVP_MD_CTX *in, unsigned char *p);
|
sl@0
|
1042 |
void ssl3_finish_mac(SSL *s, const unsigned char *buf, int len);
|
sl@0
|
1043 |
int ssl3_enc(SSL *s, int send_data);
|
sl@0
|
1044 |
int ssl3_mac(SSL *ssl, unsigned char *md, int send_data);
|
sl@0
|
1045 |
unsigned long ssl3_output_cert_chain(SSL *s, X509 *x);
|
sl@0
|
1046 |
SSL_CIPHER *ssl3_choose_cipher(SSL *ssl,STACK_OF(SSL_CIPHER) *clnt,
|
sl@0
|
1047 |
STACK_OF(SSL_CIPHER) *srvr);
|
sl@0
|
1048 |
int ssl3_setup_buffers(SSL *s);
|
sl@0
|
1049 |
int ssl3_new(SSL *s);
|
sl@0
|
1050 |
void ssl3_free(SSL *s);
|
sl@0
|
1051 |
int ssl3_accept(SSL *s);
|
sl@0
|
1052 |
int ssl3_connect(SSL *s);
|
sl@0
|
1053 |
int ssl3_read(SSL *s, void *buf, int len);
|
sl@0
|
1054 |
int ssl3_peek(SSL *s, void *buf, int len);
|
sl@0
|
1055 |
int ssl3_write(SSL *s, const void *buf, int len);
|
sl@0
|
1056 |
int ssl3_shutdown(SSL *s);
|
sl@0
|
1057 |
void ssl3_clear(SSL *s);
|
sl@0
|
1058 |
long ssl3_ctrl(SSL *s,int cmd, long larg, void *parg);
|
sl@0
|
1059 |
long ssl3_ctx_ctrl(SSL_CTX *s,int cmd, long larg, void *parg);
|
sl@0
|
1060 |
long ssl3_callback_ctrl(SSL *s,int cmd, void (*fp)(void));
|
sl@0
|
1061 |
long ssl3_ctx_callback_ctrl(SSL_CTX *s,int cmd, void (*fp)(void));
|
sl@0
|
1062 |
int ssl3_pending(const SSL *s);
|
sl@0
|
1063 |
|
sl@0
|
1064 |
void ssl3_record_sequence_update(unsigned char *seq);
|
sl@0
|
1065 |
int ssl3_do_change_cipher_spec(SSL *ssl);
|
sl@0
|
1066 |
long ssl3_default_timeout(void );
|
sl@0
|
1067 |
|
sl@0
|
1068 |
int ssl23_num_ciphers(void );
|
sl@0
|
1069 |
SSL_CIPHER *ssl23_get_cipher(unsigned int u);
|
sl@0
|
1070 |
int ssl23_read(SSL *s, void *buf, int len);
|
sl@0
|
1071 |
int ssl23_peek(SSL *s, void *buf, int len);
|
sl@0
|
1072 |
int ssl23_write(SSL *s, const void *buf, int len);
|
sl@0
|
1073 |
int ssl23_put_cipher_by_char(const SSL_CIPHER *c, unsigned char *p);
|
sl@0
|
1074 |
SSL_CIPHER *ssl23_get_cipher_by_char(const unsigned char *p);
|
sl@0
|
1075 |
long ssl23_default_timeout(void );
|
sl@0
|
1076 |
|
sl@0
|
1077 |
long tls1_default_timeout(void);
|
sl@0
|
1078 |
int dtls1_do_write(SSL *s,int type);
|
sl@0
|
1079 |
int ssl3_read_n(SSL *s, int n, int max, int extend);
|
sl@0
|
1080 |
int dtls1_read_bytes(SSL *s, int type, unsigned char *buf, int len, int peek);
|
sl@0
|
1081 |
int ssl3_do_compress(SSL *ssl);
|
sl@0
|
1082 |
int ssl3_do_uncompress(SSL *ssl);
|
sl@0
|
1083 |
int ssl3_write_pending(SSL *s, int type, const unsigned char *buf,
|
sl@0
|
1084 |
unsigned int len);
|
sl@0
|
1085 |
unsigned char *dtls1_set_message_header(SSL *s,
|
sl@0
|
1086 |
unsigned char *p, unsigned char mt, unsigned long len,
|
sl@0
|
1087 |
unsigned long frag_off, unsigned long frag_len);
|
sl@0
|
1088 |
|
sl@0
|
1089 |
int dtls1_write_app_data_bytes(SSL *s, int type, const void *buf, int len);
|
sl@0
|
1090 |
int dtls1_write_bytes(SSL *s, int type, const void *buf, int len);
|
sl@0
|
1091 |
|
sl@0
|
1092 |
int dtls1_send_change_cipher_spec(SSL *s, int a, int b);
|
sl@0
|
1093 |
int dtls1_send_finished(SSL *s, int a, int b, const char *sender, int slen);
|
sl@0
|
1094 |
unsigned long dtls1_output_cert_chain(SSL *s, X509 *x);
|
sl@0
|
1095 |
int dtls1_read_failed(SSL *s, int code);
|
sl@0
|
1096 |
int dtls1_buffer_message(SSL *s, int ccs);
|
sl@0
|
1097 |
int dtls1_retransmit_message(SSL *s, unsigned short seq,
|
sl@0
|
1098 |
unsigned long frag_off, int *found);
|
sl@0
|
1099 |
void dtls1_clear_record_buffer(SSL *s);
|
sl@0
|
1100 |
void dtls1_get_message_header(unsigned char *data, struct hm_header_st *msg_hdr);
|
sl@0
|
1101 |
void dtls1_get_ccs_header(unsigned char *data, struct ccs_header_st *ccs_hdr);
|
sl@0
|
1102 |
void dtls1_reset_seq_numbers(SSL *s, int rw);
|
sl@0
|
1103 |
long dtls1_default_timeout(void);
|
sl@0
|
1104 |
SSL_CIPHER *dtls1_get_cipher(unsigned int u);
|
sl@0
|
1105 |
|
sl@0
|
1106 |
|
sl@0
|
1107 |
/* some client-only functions */
|
sl@0
|
1108 |
int ssl3_client_hello(SSL *s);
|
sl@0
|
1109 |
int ssl3_get_server_hello(SSL *s);
|
sl@0
|
1110 |
int ssl3_get_certificate_request(SSL *s);
|
sl@0
|
1111 |
int ssl3_get_new_session_ticket(SSL *s);
|
sl@0
|
1112 |
int ssl3_get_server_done(SSL *s);
|
sl@0
|
1113 |
int ssl3_send_client_verify(SSL *s);
|
sl@0
|
1114 |
int ssl3_send_client_certificate(SSL *s);
|
sl@0
|
1115 |
int ssl3_send_client_key_exchange(SSL *s);
|
sl@0
|
1116 |
int ssl3_get_key_exchange(SSL *s);
|
sl@0
|
1117 |
int ssl3_get_server_certificate(SSL *s);
|
sl@0
|
1118 |
int ssl3_check_cert_and_algorithm(SSL *s);
|
sl@0
|
1119 |
|
sl@0
|
1120 |
int dtls1_client_hello(SSL *s);
|
sl@0
|
1121 |
int dtls1_send_client_certificate(SSL *s);
|
sl@0
|
1122 |
int dtls1_send_client_key_exchange(SSL *s);
|
sl@0
|
1123 |
int dtls1_send_client_verify(SSL *s);
|
sl@0
|
1124 |
|
sl@0
|
1125 |
/* some server-only functions */
|
sl@0
|
1126 |
int ssl3_get_client_hello(SSL *s);
|
sl@0
|
1127 |
int ssl3_send_server_hello(SSL *s);
|
sl@0
|
1128 |
int ssl3_send_hello_request(SSL *s);
|
sl@0
|
1129 |
int ssl3_send_server_key_exchange(SSL *s);
|
sl@0
|
1130 |
int ssl3_send_certificate_request(SSL *s);
|
sl@0
|
1131 |
int ssl3_send_server_done(SSL *s);
|
sl@0
|
1132 |
int ssl3_check_client_hello(SSL *s);
|
sl@0
|
1133 |
int ssl3_get_client_certificate(SSL *s);
|
sl@0
|
1134 |
int ssl3_get_client_key_exchange(SSL *s);
|
sl@0
|
1135 |
int ssl3_get_cert_verify(SSL *s);
|
sl@0
|
1136 |
|
sl@0
|
1137 |
int dtls1_send_hello_request(SSL *s);
|
sl@0
|
1138 |
int dtls1_send_server_hello(SSL *s);
|
sl@0
|
1139 |
int dtls1_send_server_certificate(SSL *s);
|
sl@0
|
1140 |
int dtls1_send_server_key_exchange(SSL *s);
|
sl@0
|
1141 |
int dtls1_send_certificate_request(SSL *s);
|
sl@0
|
1142 |
int dtls1_send_server_done(SSL *s);
|
sl@0
|
1143 |
|
sl@0
|
1144 |
|
sl@0
|
1145 |
|
sl@0
|
1146 |
int ssl23_accept(SSL *s);
|
sl@0
|
1147 |
int ssl23_connect(SSL *s);
|
sl@0
|
1148 |
int ssl23_read_bytes(SSL *s, int n);
|
sl@0
|
1149 |
int ssl23_write_bytes(SSL *s);
|
sl@0
|
1150 |
|
sl@0
|
1151 |
int tls1_new(SSL *s);
|
sl@0
|
1152 |
void tls1_free(SSL *s);
|
sl@0
|
1153 |
void tls1_clear(SSL *s);
|
sl@0
|
1154 |
long tls1_ctrl(SSL *s,int cmd, long larg, void *parg);
|
sl@0
|
1155 |
long tls1_callback_ctrl(SSL *s,int cmd, void (*fp)(void));
|
sl@0
|
1156 |
SSL_METHOD *tlsv1_base_method(void );
|
sl@0
|
1157 |
|
sl@0
|
1158 |
int dtls1_new(SSL *s);
|
sl@0
|
1159 |
int dtls1_accept(SSL *s);
|
sl@0
|
1160 |
int dtls1_connect(SSL *s);
|
sl@0
|
1161 |
void dtls1_free(SSL *s);
|
sl@0
|
1162 |
void dtls1_clear(SSL *s);
|
sl@0
|
1163 |
long dtls1_ctrl(SSL *s,int cmd, long larg, void *parg);
|
sl@0
|
1164 |
SSL_METHOD *dtlsv1_base_method(void );
|
sl@0
|
1165 |
|
sl@0
|
1166 |
long dtls1_get_message(SSL *s, int st1, int stn, int mt, long max, int *ok);
|
sl@0
|
1167 |
int dtls1_get_record(SSL *s);
|
sl@0
|
1168 |
int do_dtls1_write(SSL *s, int type, const unsigned char *buf,
|
sl@0
|
1169 |
unsigned int len, int create_empty_fragement);
|
sl@0
|
1170 |
int dtls1_dispatch_alert(SSL *s);
|
sl@0
|
1171 |
int dtls1_enc(SSL *s, int snd);
|
sl@0
|
1172 |
|
sl@0
|
1173 |
int ssl_init_wbio_buffer(SSL *s, int push);
|
sl@0
|
1174 |
void ssl_free_wbio_buffer(SSL *s);
|
sl@0
|
1175 |
|
sl@0
|
1176 |
int tls1_change_cipher_state(SSL *s, int which);
|
sl@0
|
1177 |
int tls1_setup_key_block(SSL *s);
|
sl@0
|
1178 |
int tls1_enc(SSL *s, int snd);
|
sl@0
|
1179 |
int tls1_final_finish_mac(SSL *s, EVP_MD_CTX *in1_ctx, EVP_MD_CTX *in2_ctx,
|
sl@0
|
1180 |
const char *str, int slen, unsigned char *p);
|
sl@0
|
1181 |
int tls1_cert_verify_mac(SSL *s, EVP_MD_CTX *in, unsigned char *p);
|
sl@0
|
1182 |
int tls1_mac(SSL *ssl, unsigned char *md, int snd);
|
sl@0
|
1183 |
int tls1_generate_master_secret(SSL *s, unsigned char *out,
|
sl@0
|
1184 |
unsigned char *p, int len);
|
sl@0
|
1185 |
int tls1_alert_code(int code);
|
sl@0
|
1186 |
int ssl3_alert_code(int code);
|
sl@0
|
1187 |
int ssl_ok(SSL *s);
|
sl@0
|
1188 |
|
sl@0
|
1189 |
int check_srvr_ecc_cert_and_alg(X509 *x, SSL_CIPHER *cs);
|
sl@0
|
1190 |
|
sl@0
|
1191 |
SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n);
|
sl@0
|
1192 |
|
sl@0
|
1193 |
|
sl@0
|
1194 |
#endif
|