sl@0
|
1 |
/* crypto/asn1/n_pkey.c */
|
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 |
© Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
|
sl@0
|
62 |
#include <stdio.h>
|
sl@0
|
63 |
#include "cryptlib.h"
|
sl@0
|
64 |
#ifndef OPENSSL_NO_RSA
|
sl@0
|
65 |
#include <openssl/rsa.h>
|
sl@0
|
66 |
#include <openssl/objects.h>
|
sl@0
|
67 |
#include <openssl/asn1t.h>
|
sl@0
|
68 |
#include <openssl/asn1_mac.h>
|
sl@0
|
69 |
#include <openssl/evp.h>
|
sl@0
|
70 |
#include <openssl/x509.h>
|
sl@0
|
71 |
|
sl@0
|
72 |
|
sl@0
|
73 |
#ifndef OPENSSL_NO_RC4
|
sl@0
|
74 |
|
sl@0
|
75 |
typedef struct netscape_pkey_st
|
sl@0
|
76 |
{
|
sl@0
|
77 |
long version;
|
sl@0
|
78 |
X509_ALGOR *algor;
|
sl@0
|
79 |
ASN1_OCTET_STRING *private_key;
|
sl@0
|
80 |
} NETSCAPE_PKEY;
|
sl@0
|
81 |
|
sl@0
|
82 |
typedef struct netscape_encrypted_pkey_st
|
sl@0
|
83 |
{
|
sl@0
|
84 |
ASN1_OCTET_STRING *os;
|
sl@0
|
85 |
/* This is the same structure as DigestInfo so use it:
|
sl@0
|
86 |
* although this isn't really anything to do with
|
sl@0
|
87 |
* digests.
|
sl@0
|
88 |
*/
|
sl@0
|
89 |
X509_SIG *enckey;
|
sl@0
|
90 |
} NETSCAPE_ENCRYPTED_PKEY;
|
sl@0
|
91 |
|
sl@0
|
92 |
|
sl@0
|
93 |
ASN1_BROKEN_SEQUENCE(NETSCAPE_ENCRYPTED_PKEY) = {
|
sl@0
|
94 |
ASN1_SIMPLE(NETSCAPE_ENCRYPTED_PKEY, os, ASN1_OCTET_STRING),
|
sl@0
|
95 |
ASN1_SIMPLE(NETSCAPE_ENCRYPTED_PKEY, enckey, X509_SIG)
|
sl@0
|
96 |
} ASN1_BROKEN_SEQUENCE_END(NETSCAPE_ENCRYPTED_PKEY)
|
sl@0
|
97 |
|
sl@0
|
98 |
DECLARE_ASN1_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY)
|
sl@0
|
99 |
DECLARE_ASN1_ENCODE_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY,NETSCAPE_ENCRYPTED_PKEY)
|
sl@0
|
100 |
IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY)
|
sl@0
|
101 |
|
sl@0
|
102 |
ASN1_SEQUENCE(NETSCAPE_PKEY) = {
|
sl@0
|
103 |
ASN1_SIMPLE(NETSCAPE_PKEY, version, LONG),
|
sl@0
|
104 |
ASN1_SIMPLE(NETSCAPE_PKEY, algor, X509_ALGOR),
|
sl@0
|
105 |
ASN1_SIMPLE(NETSCAPE_PKEY, private_key, ASN1_OCTET_STRING)
|
sl@0
|
106 |
} ASN1_SEQUENCE_END(NETSCAPE_PKEY)
|
sl@0
|
107 |
|
sl@0
|
108 |
DECLARE_ASN1_FUNCTIONS_const(NETSCAPE_PKEY)
|
sl@0
|
109 |
DECLARE_ASN1_ENCODE_FUNCTIONS_const(NETSCAPE_PKEY,NETSCAPE_PKEY)
|
sl@0
|
110 |
IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_PKEY)
|
sl@0
|
111 |
|
sl@0
|
112 |
static RSA *d2i_RSA_NET_2(RSA **a, ASN1_OCTET_STRING *os,
|
sl@0
|
113 |
int (*cb)(char *buf, int len, const char *prompt,
|
sl@0
|
114 |
int verify),
|
sl@0
|
115 |
int sgckey);
|
sl@0
|
116 |
|
sl@0
|
117 |
EXPORT_C int i2d_Netscape_RSA(const RSA *a, unsigned char **pp,
|
sl@0
|
118 |
int (*cb)(char *buf, int len, const char *prompt,
|
sl@0
|
119 |
int verify))
|
sl@0
|
120 |
{
|
sl@0
|
121 |
return i2d_RSA_NET(a, pp, cb, 0);
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
EXPORT_C int i2d_RSA_NET(const RSA *a, unsigned char **pp,
|
sl@0
|
125 |
int (*cb)(char *buf, int len, const char *prompt, int verify),
|
sl@0
|
126 |
int sgckey)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
int i, j, ret = 0;
|
sl@0
|
129 |
int rsalen, pkeylen, olen;
|
sl@0
|
130 |
NETSCAPE_PKEY *pkey = NULL;
|
sl@0
|
131 |
NETSCAPE_ENCRYPTED_PKEY *enckey = NULL;
|
sl@0
|
132 |
unsigned char buf[256],*zz;
|
sl@0
|
133 |
unsigned char key[EVP_MAX_KEY_LENGTH];
|
sl@0
|
134 |
EVP_CIPHER_CTX ctx;
|
sl@0
|
135 |
|
sl@0
|
136 |
if (a == NULL) return(0);
|
sl@0
|
137 |
|
sl@0
|
138 |
if ((pkey=NETSCAPE_PKEY_new()) == NULL) goto err;
|
sl@0
|
139 |
if ((enckey=NETSCAPE_ENCRYPTED_PKEY_new()) == NULL) goto err;
|
sl@0
|
140 |
pkey->version = 0;
|
sl@0
|
141 |
|
sl@0
|
142 |
pkey->algor->algorithm=OBJ_nid2obj(NID_rsaEncryption);
|
sl@0
|
143 |
if ((pkey->algor->parameter=ASN1_TYPE_new()) == NULL) goto err;
|
sl@0
|
144 |
pkey->algor->parameter->type=V_ASN1_NULL;
|
sl@0
|
145 |
|
sl@0
|
146 |
rsalen = i2d_RSAPrivateKey(a, NULL);
|
sl@0
|
147 |
|
sl@0
|
148 |
/* Fake some octet strings just for the initial length
|
sl@0
|
149 |
* calculation.
|
sl@0
|
150 |
*/
|
sl@0
|
151 |
|
sl@0
|
152 |
pkey->private_key->length=rsalen;
|
sl@0
|
153 |
|
sl@0
|
154 |
pkeylen=i2d_NETSCAPE_PKEY(pkey,NULL);
|
sl@0
|
155 |
|
sl@0
|
156 |
enckey->enckey->digest->length = pkeylen;
|
sl@0
|
157 |
|
sl@0
|
158 |
enckey->os->length = 11; /* "private-key" */
|
sl@0
|
159 |
|
sl@0
|
160 |
enckey->enckey->algor->algorithm=OBJ_nid2obj(NID_rc4);
|
sl@0
|
161 |
if ((enckey->enckey->algor->parameter=ASN1_TYPE_new()) == NULL) goto err;
|
sl@0
|
162 |
enckey->enckey->algor->parameter->type=V_ASN1_NULL;
|
sl@0
|
163 |
|
sl@0
|
164 |
if (pp == NULL)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
olen = i2d_NETSCAPE_ENCRYPTED_PKEY(enckey, NULL);
|
sl@0
|
167 |
NETSCAPE_PKEY_free(pkey);
|
sl@0
|
168 |
NETSCAPE_ENCRYPTED_PKEY_free(enckey);
|
sl@0
|
169 |
return olen;
|
sl@0
|
170 |
}
|
sl@0
|
171 |
|
sl@0
|
172 |
|
sl@0
|
173 |
/* Since its RC4 encrypted length is actual length */
|
sl@0
|
174 |
if ((zz=(unsigned char *)OPENSSL_malloc(rsalen)) == NULL)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
ASN1err(ASN1_F_I2D_RSA_NET,ERR_R_MALLOC_FAILURE);
|
sl@0
|
177 |
goto err;
|
sl@0
|
178 |
}
|
sl@0
|
179 |
|
sl@0
|
180 |
pkey->private_key->data = zz;
|
sl@0
|
181 |
/* Write out private key encoding */
|
sl@0
|
182 |
i2d_RSAPrivateKey(a,&zz);
|
sl@0
|
183 |
|
sl@0
|
184 |
if ((zz=OPENSSL_malloc(pkeylen)) == NULL)
|
sl@0
|
185 |
{
|
sl@0
|
186 |
ASN1err(ASN1_F_I2D_RSA_NET,ERR_R_MALLOC_FAILURE);
|
sl@0
|
187 |
goto err;
|
sl@0
|
188 |
}
|
sl@0
|
189 |
|
sl@0
|
190 |
if (!ASN1_STRING_set(enckey->os, "private-key", -1))
|
sl@0
|
191 |
{
|
sl@0
|
192 |
ASN1err(ASN1_F_I2D_RSA_NET,ERR_R_MALLOC_FAILURE);
|
sl@0
|
193 |
goto err;
|
sl@0
|
194 |
}
|
sl@0
|
195 |
enckey->enckey->digest->data = zz;
|
sl@0
|
196 |
i2d_NETSCAPE_PKEY(pkey,&zz);
|
sl@0
|
197 |
|
sl@0
|
198 |
/* Wipe the private key encoding */
|
sl@0
|
199 |
OPENSSL_cleanse(pkey->private_key->data, rsalen);
|
sl@0
|
200 |
|
sl@0
|
201 |
if (cb == NULL)
|
sl@0
|
202 |
cb=EVP_read_pw_string;
|
sl@0
|
203 |
i=cb((char *)buf,256,"Enter Private Key password:",1);
|
sl@0
|
204 |
if (i != 0)
|
sl@0
|
205 |
{
|
sl@0
|
206 |
ASN1err(ASN1_F_I2D_RSA_NET,ASN1_R_BAD_PASSWORD_READ);
|
sl@0
|
207 |
goto err;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
i = strlen((char *)buf);
|
sl@0
|
210 |
/* If the key is used for SGC the algorithm is modified a little. */
|
sl@0
|
211 |
if(sgckey) {
|
sl@0
|
212 |
EVP_Digest(buf, i, buf, NULL, EVP_md5(), NULL);
|
sl@0
|
213 |
memcpy(buf + 16, "SGCKEYSALT", 10);
|
sl@0
|
214 |
i = 26;
|
sl@0
|
215 |
}
|
sl@0
|
216 |
|
sl@0
|
217 |
EVP_BytesToKey(EVP_rc4(),EVP_md5(),NULL,buf,i,1,key,NULL);
|
sl@0
|
218 |
OPENSSL_cleanse(buf,256);
|
sl@0
|
219 |
|
sl@0
|
220 |
/* Encrypt private key in place */
|
sl@0
|
221 |
zz = enckey->enckey->digest->data;
|
sl@0
|
222 |
EVP_CIPHER_CTX_init(&ctx);
|
sl@0
|
223 |
EVP_EncryptInit_ex(&ctx,EVP_rc4(),NULL,key,NULL);
|
sl@0
|
224 |
EVP_EncryptUpdate(&ctx,zz,&i,zz,pkeylen);
|
sl@0
|
225 |
EVP_EncryptFinal_ex(&ctx,zz + i,&j);
|
sl@0
|
226 |
EVP_CIPHER_CTX_cleanup(&ctx);
|
sl@0
|
227 |
|
sl@0
|
228 |
ret = i2d_NETSCAPE_ENCRYPTED_PKEY(enckey, pp);
|
sl@0
|
229 |
err:
|
sl@0
|
230 |
NETSCAPE_ENCRYPTED_PKEY_free(enckey);
|
sl@0
|
231 |
NETSCAPE_PKEY_free(pkey);
|
sl@0
|
232 |
return(ret);
|
sl@0
|
233 |
}
|
sl@0
|
234 |
|
sl@0
|
235 |
|
sl@0
|
236 |
EXPORT_C RSA *d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length,
|
sl@0
|
237 |
int (*cb)(char *buf, int len, const char *prompt,
|
sl@0
|
238 |
int verify))
|
sl@0
|
239 |
{
|
sl@0
|
240 |
return d2i_RSA_NET(a, pp, length, cb, 0);
|
sl@0
|
241 |
}
|
sl@0
|
242 |
|
sl@0
|
243 |
EXPORT_C RSA *d2i_RSA_NET(RSA **a, const unsigned char **pp, long length,
|
sl@0
|
244 |
int (*cb)(char *buf, int len, const char *prompt, int verify),
|
sl@0
|
245 |
int sgckey)
|
sl@0
|
246 |
{
|
sl@0
|
247 |
RSA *ret=NULL;
|
sl@0
|
248 |
const unsigned char *p, *kp;
|
sl@0
|
249 |
NETSCAPE_ENCRYPTED_PKEY *enckey = NULL;
|
sl@0
|
250 |
|
sl@0
|
251 |
p = *pp;
|
sl@0
|
252 |
|
sl@0
|
253 |
enckey = d2i_NETSCAPE_ENCRYPTED_PKEY(NULL, &p, length);
|
sl@0
|
254 |
if(!enckey) {
|
sl@0
|
255 |
ASN1err(ASN1_F_D2I_RSA_NET,ASN1_R_DECODING_ERROR);
|
sl@0
|
256 |
return NULL;
|
sl@0
|
257 |
}
|
sl@0
|
258 |
|
sl@0
|
259 |
if ((enckey->os->length != 11) || (strncmp("private-key",
|
sl@0
|
260 |
(char *)enckey->os->data,11) != 0))
|
sl@0
|
261 |
{
|
sl@0
|
262 |
ASN1err(ASN1_F_D2I_RSA_NET,ASN1_R_PRIVATE_KEY_HEADER_MISSING);
|
sl@0
|
263 |
NETSCAPE_ENCRYPTED_PKEY_free(enckey);
|
sl@0
|
264 |
return NULL;
|
sl@0
|
265 |
}
|
sl@0
|
266 |
if (OBJ_obj2nid(enckey->enckey->algor->algorithm) != NID_rc4)
|
sl@0
|
267 |
{
|
sl@0
|
268 |
ASN1err(ASN1_F_D2I_RSA_NET,ASN1_R_UNSUPPORTED_ENCRYPTION_ALGORITHM);
|
sl@0
|
269 |
goto err;
|
sl@0
|
270 |
}
|
sl@0
|
271 |
kp = enckey->enckey->digest->data;
|
sl@0
|
272 |
if (cb == NULL)
|
sl@0
|
273 |
cb=EVP_read_pw_string;
|
sl@0
|
274 |
if ((ret=d2i_RSA_NET_2(a, enckey->enckey->digest,cb, sgckey)) == NULL) goto err;
|
sl@0
|
275 |
|
sl@0
|
276 |
*pp = p;
|
sl@0
|
277 |
|
sl@0
|
278 |
err:
|
sl@0
|
279 |
NETSCAPE_ENCRYPTED_PKEY_free(enckey);
|
sl@0
|
280 |
return ret;
|
sl@0
|
281 |
|
sl@0
|
282 |
}
|
sl@0
|
283 |
|
sl@0
|
284 |
static RSA *d2i_RSA_NET_2(RSA **a, ASN1_OCTET_STRING *os,
|
sl@0
|
285 |
int (*cb)(char *buf, int len, const char *prompt,
|
sl@0
|
286 |
int verify), int sgckey)
|
sl@0
|
287 |
{
|
sl@0
|
288 |
NETSCAPE_PKEY *pkey=NULL;
|
sl@0
|
289 |
RSA *ret=NULL;
|
sl@0
|
290 |
int i,j;
|
sl@0
|
291 |
unsigned char buf[256];
|
sl@0
|
292 |
const unsigned char *zz;
|
sl@0
|
293 |
unsigned char key[EVP_MAX_KEY_LENGTH];
|
sl@0
|
294 |
EVP_CIPHER_CTX ctx;
|
sl@0
|
295 |
|
sl@0
|
296 |
i=cb((char *)buf,256,"Enter Private Key password:",0);
|
sl@0
|
297 |
if (i != 0)
|
sl@0
|
298 |
{
|
sl@0
|
299 |
ASN1err(ASN1_F_D2I_RSA_NET_2,ASN1_R_BAD_PASSWORD_READ);
|
sl@0
|
300 |
goto err;
|
sl@0
|
301 |
}
|
sl@0
|
302 |
|
sl@0
|
303 |
i = strlen((char *)buf);
|
sl@0
|
304 |
if(sgckey){
|
sl@0
|
305 |
EVP_Digest(buf, i, buf, NULL, EVP_md5(), NULL);
|
sl@0
|
306 |
memcpy(buf + 16, "SGCKEYSALT", 10);
|
sl@0
|
307 |
i = 26;
|
sl@0
|
308 |
}
|
sl@0
|
309 |
|
sl@0
|
310 |
EVP_BytesToKey(EVP_rc4(),EVP_md5(),NULL,buf,i,1,key,NULL);
|
sl@0
|
311 |
OPENSSL_cleanse(buf,256);
|
sl@0
|
312 |
|
sl@0
|
313 |
EVP_CIPHER_CTX_init(&ctx);
|
sl@0
|
314 |
EVP_DecryptInit_ex(&ctx,EVP_rc4(),NULL, key,NULL);
|
sl@0
|
315 |
EVP_DecryptUpdate(&ctx,os->data,&i,os->data,os->length);
|
sl@0
|
316 |
EVP_DecryptFinal_ex(&ctx,&(os->data[i]),&j);
|
sl@0
|
317 |
EVP_CIPHER_CTX_cleanup(&ctx);
|
sl@0
|
318 |
os->length=i+j;
|
sl@0
|
319 |
|
sl@0
|
320 |
zz=os->data;
|
sl@0
|
321 |
|
sl@0
|
322 |
if ((pkey=d2i_NETSCAPE_PKEY(NULL,&zz,os->length)) == NULL)
|
sl@0
|
323 |
{
|
sl@0
|
324 |
ASN1err(ASN1_F_D2I_RSA_NET_2,ASN1_R_UNABLE_TO_DECODE_RSA_PRIVATE_KEY);
|
sl@0
|
325 |
goto err;
|
sl@0
|
326 |
}
|
sl@0
|
327 |
|
sl@0
|
328 |
zz=pkey->private_key->data;
|
sl@0
|
329 |
if ((ret=d2i_RSAPrivateKey(a,&zz,pkey->private_key->length)) == NULL)
|
sl@0
|
330 |
{
|
sl@0
|
331 |
ASN1err(ASN1_F_D2I_RSA_NET_2,ASN1_R_UNABLE_TO_DECODE_RSA_KEY);
|
sl@0
|
332 |
goto err;
|
sl@0
|
333 |
}
|
sl@0
|
334 |
|
sl@0
|
335 |
err:
|
sl@0
|
336 |
NETSCAPE_PKEY_free(pkey);
|
sl@0
|
337 |
return(ret);
|
sl@0
|
338 |
}
|
sl@0
|
339 |
|
sl@0
|
340 |
#endif /* OPENSSL_NO_RC4 */
|
sl@0
|
341 |
|
sl@0
|
342 |
#else /* !OPENSSL_NO_RSA */
|
sl@0
|
343 |
|
sl@0
|
344 |
# if PEDANTIC
|
sl@0
|
345 |
static void *dummy=&dummy;
|
sl@0
|
346 |
# endif
|
sl@0
|
347 |
|
sl@0
|
348 |
#endif
|