Replace EVP_CTRL_OCB_SET_TAGLEN with EVP_CTRL_SET_TAG for consistency with
[openssl.git] / crypto / evp / evp_test.c
1 /* Written by Ben Laurie, 2001 */
2 /*
3  * Copyright (c) 2001 The OpenSSL Project.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in
14  *    the documentation and/or other materials provided with the
15  *    distribution.
16  *
17  * 3. All advertising materials mentioning features or use of this
18  *    software must display the following acknowledgment:
19  *    "This product includes software developed by the OpenSSL Project
20  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
21  *
22  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23  *    endorse or promote products derived from this software without
24  *    prior written permission. For written permission, please contact
25  *    openssl-core@openssl.org.
26  *
27  * 5. Products derived from this software may not be called "OpenSSL"
28  *    nor may "OpenSSL" appear in their names without prior written
29  *    permission of the OpenSSL Project.
30  *
31  * 6. Redistributions of any form whatsoever must retain the following
32  *    acknowledgment:
33  *    "This product includes software developed by the OpenSSL Project
34  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
35  *
36  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
40  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47  * OF THE POSSIBILITY OF SUCH DAMAGE.
48  */
49
50 #include <stdio.h>
51 #include <string.h>
52
53 #include "../e_os.h"
54
55 #include <openssl/opensslconf.h>
56 #include <openssl/evp.h>
57 #ifndef OPENSSL_NO_ENGINE
58 # include <openssl/engine.h>
59 #endif
60 #include <openssl/err.h>
61 #include <openssl/conf.h>
62
63 static void hexdump(FILE *f, const char *title, const unsigned char *s, int l)
64 {
65     int n = 0;
66
67     fprintf(f, "%s", title);
68     for (; n < l; ++n) {
69         if ((n % 16) == 0)
70             fprintf(f, "\n%04x", n);
71         fprintf(f, " %02x", s[n]);
72     }
73     fprintf(f, "\n");
74 }
75
76 static int convert(unsigned char *s)
77 {
78     unsigned char *d;
79
80     for (d = s; *s; s += 2, ++d) {
81         unsigned int n;
82
83         if (!s[1]) {
84             fprintf(stderr, "Odd number of hex digits!");
85             EXIT(4);
86         }
87         sscanf((char *)s, "%2x", &n);
88         *d = (unsigned char)n;
89     }
90     return s - d;
91 }
92
93 static char *sstrsep(char **string, const char *delim)
94 {
95     char isdelim[256];
96     char *token = *string;
97
98     if (**string == 0)
99         return NULL;
100
101     memset(isdelim, 0, 256);
102     isdelim[0] = 1;
103
104     while (*delim) {
105         isdelim[(unsigned char)(*delim)] = 1;
106         delim++;
107     }
108
109     while (!isdelim[(unsigned char)(**string)]) {
110         (*string)++;
111     }
112
113     if (**string) {
114         **string = 0;
115         (*string)++;
116     }
117
118     return token;
119 }
120
121 static unsigned char *ustrsep(char **p, const char *sep)
122 {
123     return (unsigned char *)sstrsep(p, sep);
124 }
125
126 static int test1_exit(int ec)
127 {
128     EXIT(ec);
129     return (0);                 /* To keep some compilers quiet */
130 }
131
132 /* Test copying of contexts */
133 static void test_ctx_replace(EVP_CIPHER_CTX **pctx)
134 {
135     /* Make copy of context and replace original */
136     EVP_CIPHER_CTX *ctx_copy;
137     ctx_copy = EVP_CIPHER_CTX_new();
138     EVP_CIPHER_CTX_copy(ctx_copy, *pctx);
139     EVP_CIPHER_CTX_free(*pctx);
140     *pctx = ctx_copy;
141 }
142
143 static void test1(const EVP_CIPHER *c, const unsigned char *key, int kn,
144                   const unsigned char *iv, int in,
145                   const unsigned char *plaintext, int pn,
146                   const unsigned char *ciphertext, int cn,
147                   const unsigned char *aad, int an,
148                   const unsigned char *tag, int tn, int encdec)
149 {
150     EVP_CIPHER_CTX *ctx = NULL;
151     unsigned char out[4096];
152     int outl, outl2, mode;
153
154     printf("Testing cipher %s%s\n", EVP_CIPHER_name(c),
155            (encdec ==
156             1 ? "(encrypt)" : (encdec ==
157                                0 ? "(decrypt)" : "(encrypt/decrypt)")));
158     hexdump(stdout, "Key", key, kn);
159     if (in)
160         hexdump(stdout, "IV", iv, in);
161     hexdump(stdout, "Plaintext", plaintext, pn);
162     hexdump(stdout, "Ciphertext", ciphertext, cn);
163     if (an)
164         hexdump(stdout, "AAD", aad, an);
165     if (tn)
166         hexdump(stdout, "Tag", tag, tn);
167     mode = EVP_CIPHER_mode(c);
168     if (kn != EVP_CIPHER_key_length(c)) {
169         fprintf(stderr, "Key length doesn't match, got %d expected %lu\n", kn,
170                 (unsigned long)EVP_CIPHER_key_length(c));
171         test1_exit(5);
172     }
173     ctx = EVP_CIPHER_CTX_new();
174     EVP_CIPHER_CTX_set_flags(ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);
175     if (encdec != 0) {
176         if ((mode == EVP_CIPH_GCM_MODE) || (mode == EVP_CIPH_OCB_MODE)) {
177             if (!EVP_EncryptInit_ex(ctx, c, NULL, NULL, NULL)) {
178                 fprintf(stderr, "EncryptInit failed\n");
179                 ERR_print_errors_fp(stderr);
180                 test1_exit(10);
181             }
182             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_SET_IVLEN, in, NULL)) {
183                 fprintf(stderr, "IV length set failed\n");
184                 ERR_print_errors_fp(stderr);
185                 test1_exit(11);
186             }
187             if ((mode == EVP_CIPH_OCB_MODE) &&
188                 !EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_SET_TAG, tn, NULL)) {
189                 fprintf(stderr, "Tag length set failed\n");
190                 ERR_print_errors_fp(stderr);
191                 test1_exit(15);
192             }
193             if (!EVP_EncryptInit_ex(ctx, NULL, NULL, key, iv)) {
194                 fprintf(stderr, "Key/IV set failed\n");
195                 ERR_print_errors_fp(stderr);
196                 test1_exit(12);
197             }
198             if (an && !EVP_EncryptUpdate(ctx, NULL, &outl, aad, an)) {
199                 fprintf(stderr, "AAD set failed\n");
200                 ERR_print_errors_fp(stderr);
201                 test1_exit(13);
202             }
203         } else if (mode == EVP_CIPH_CCM_MODE) {
204             if (!EVP_EncryptInit_ex(ctx, c, NULL, NULL, NULL)) {
205                 fprintf(stderr, "EncryptInit failed\n");
206                 ERR_print_errors_fp(stderr);
207                 test1_exit(10);
208             }
209             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_IVLEN, in, NULL)) {
210                 fprintf(stderr, "IV length set failed\n");
211                 ERR_print_errors_fp(stderr);
212                 test1_exit(11);
213             }
214             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_TAG, tn, NULL)) {
215                 fprintf(stderr, "Tag length set failed\n");
216                 ERR_print_errors_fp(stderr);
217                 test1_exit(11);
218             }
219             if (!EVP_EncryptInit_ex(ctx, NULL, NULL, key, iv)) {
220                 fprintf(stderr, "Key/IV set failed\n");
221                 ERR_print_errors_fp(stderr);
222                 test1_exit(12);
223             }
224             if (!EVP_EncryptUpdate(ctx, NULL, &outl, NULL, pn)) {
225                 fprintf(stderr, "Plaintext length set failed\n");
226                 ERR_print_errors_fp(stderr);
227                 test1_exit(12);
228             }
229             if (an && !EVP_EncryptUpdate(ctx, NULL, &outl, aad, an)) {
230                 fprintf(stderr, "AAD set failed\n");
231                 ERR_print_errors_fp(stderr);
232                 test1_exit(13);
233             }
234         } else if (mode == EVP_CIPH_WRAP_MODE) {
235             if (!EVP_EncryptInit_ex(ctx, c, NULL, key, in ? iv : NULL)) {
236                 fprintf(stderr, "EncryptInit failed\n");
237                 ERR_print_errors_fp(stderr);
238                 test1_exit(10);
239             }
240         } else if (!EVP_EncryptInit_ex(ctx, c, NULL, key, iv)) {
241             fprintf(stderr, "EncryptInit failed\n");
242             ERR_print_errors_fp(stderr);
243             test1_exit(10);
244         }
245         EVP_CIPHER_CTX_set_padding(ctx, 0);
246
247         test_ctx_replace(&ctx);
248
249         if (!EVP_EncryptUpdate(ctx, out, &outl, plaintext, pn)) {
250             fprintf(stderr, "Encrypt failed\n");
251             ERR_print_errors_fp(stderr);
252             test1_exit(6);
253         }
254         if (!EVP_EncryptFinal_ex(ctx, out + outl, &outl2)) {
255             fprintf(stderr, "EncryptFinal failed\n");
256             ERR_print_errors_fp(stderr);
257             test1_exit(7);
258         }
259
260         if (outl + outl2 != cn) {
261             fprintf(stderr, "Ciphertext length mismatch got %d expected %d\n",
262                     outl + outl2, cn);
263             test1_exit(8);
264         }
265
266         if (memcmp(out, ciphertext, cn)) {
267             fprintf(stderr, "Ciphertext mismatch\n");
268             hexdump(stderr, "Got", out, cn);
269             hexdump(stderr, "Expected", ciphertext, cn);
270             test1_exit(9);
271         }
272         if ((mode == EVP_CIPH_GCM_MODE) || (mode == EVP_CIPH_OCB_MODE)
273             || (mode == EVP_CIPH_CCM_MODE)) {
274             unsigned char rtag[16];
275
276             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_GET_TAG, tn, rtag)) {
277                 fprintf(stderr, "Get tag failed\n");
278                 ERR_print_errors_fp(stderr);
279                 test1_exit(14);
280             }
281             if (memcmp(rtag, tag, tn)) {
282                 fprintf(stderr, "Tag mismatch\n");
283                 hexdump(stderr, "Got", rtag, tn);
284                 hexdump(stderr, "Expected", tag, tn);
285                 test1_exit(9);
286             }
287         }
288     }
289
290     if (encdec <= 0) {
291         if ((mode == EVP_CIPH_GCM_MODE) || (mode == EVP_CIPH_OCB_MODE)) {
292             if (!EVP_DecryptInit_ex(ctx, c, NULL, NULL, NULL)) {
293                 fprintf(stderr, "DecryptInit failed\n");
294                 ERR_print_errors_fp(stderr);
295                 test1_exit(10);
296             }
297             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_SET_IVLEN, in, NULL)) {
298                 fprintf(stderr, "IV length set failed\n");
299                 ERR_print_errors_fp(stderr);
300                 test1_exit(11);
301             }
302             if ((mode == EVP_CIPH_OCB_MODE) &&
303                 !EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_SET_TAG, tn, NULL)) {
304                 fprintf(stderr, "Tag length set failed\n");
305                 ERR_print_errors_fp(stderr);
306                 test1_exit(15);
307             }
308             if (!EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv)) {
309                 fprintf(stderr, "Key/IV set failed\n");
310                 ERR_print_errors_fp(stderr);
311                 test1_exit(12);
312             }
313             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_SET_TAG, tn, (void *)tag)) {
314                 fprintf(stderr, "Set tag failed\n");
315                 ERR_print_errors_fp(stderr);
316                 test1_exit(14);
317             }
318             if (an && !EVP_DecryptUpdate(ctx, NULL, &outl, aad, an)) {
319                 fprintf(stderr, "AAD set failed\n");
320                 ERR_print_errors_fp(stderr);
321                 test1_exit(13);
322             }
323         } else if (mode == EVP_CIPH_CCM_MODE) {
324             if (!EVP_DecryptInit_ex(ctx, c, NULL, NULL, NULL)) {
325                 fprintf(stderr, "DecryptInit failed\n");
326                 ERR_print_errors_fp(stderr);
327                 test1_exit(10);
328             }
329             if (!EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_CCM_SET_IVLEN, in, NULL)) {
330                 fprintf(stderr, "IV length set failed\n");
331                 ERR_print_errors_fp(stderr);
332                 test1_exit(11);
333             }
334             if (!EVP_CIPHER_CTX_ctrl
335                 (ctx, EVP_CTRL_CCM_SET_TAG, tn, (void *)tag)) {
336                 fprintf(stderr, "Tag length set failed\n");
337                 ERR_print_errors_fp(stderr);
338                 test1_exit(11);
339             }
340             if (!EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv)) {
341                 fprintf(stderr, "Key/Nonce set failed\n");
342                 ERR_print_errors_fp(stderr);
343                 test1_exit(12);
344             }
345             if (!EVP_DecryptUpdate(ctx, NULL, &outl, NULL, pn)) {
346                 fprintf(stderr, "Plaintext length set failed\n");
347                 ERR_print_errors_fp(stderr);
348                 test1_exit(12);
349             }
350             if (an && !EVP_EncryptUpdate(ctx, NULL, &outl, aad, an)) {
351                 fprintf(stderr, "AAD set failed\n");
352                 ERR_print_errors_fp(stderr);
353                 test1_exit(13);
354             }
355         } else if (mode == EVP_CIPH_WRAP_MODE) {
356             if (!EVP_DecryptInit_ex(ctx, c, NULL, key, in ? iv : NULL)) {
357                 fprintf(stderr, "EncryptInit failed\n");
358                 ERR_print_errors_fp(stderr);
359                 test1_exit(10);
360             }
361         } else if (!EVP_DecryptInit_ex(ctx, c, NULL, key, iv)) {
362             fprintf(stderr, "DecryptInit failed\n");
363             ERR_print_errors_fp(stderr);
364             test1_exit(11);
365         }
366         EVP_CIPHER_CTX_set_padding(ctx, 0);
367
368         test_ctx_replace(&ctx);
369
370         if (!EVP_DecryptUpdate(ctx, out, &outl, ciphertext, cn)) {
371             fprintf(stderr, "Decrypt failed\n");
372             ERR_print_errors_fp(stderr);
373             test1_exit(6);
374         }
375         if (mode != EVP_CIPH_CCM_MODE
376             && !EVP_DecryptFinal_ex(ctx, out + outl, &outl2)) {
377             fprintf(stderr, "DecryptFinal failed\n");
378             ERR_print_errors_fp(stderr);
379             test1_exit(7);
380         }
381
382         if (outl + outl2 != pn) {
383             fprintf(stderr, "Plaintext length mismatch got %d expected %d\n",
384                     outl + outl2, pn);
385             test1_exit(8);
386         }
387
388         if (memcmp(out, plaintext, pn)) {
389             fprintf(stderr, "Plaintext mismatch\n");
390             hexdump(stderr, "Got", out, pn);
391             hexdump(stderr, "Expected", plaintext, pn);
392             test1_exit(9);
393         }
394     }
395
396     EVP_CIPHER_CTX_free(ctx);
397
398     printf("\n");
399 }
400
401 static int test_cipher(const char *cipher, const unsigned char *key, int kn,
402                        const unsigned char *iv, int in,
403                        const unsigned char *plaintext, int pn,
404                        const unsigned char *ciphertext, int cn,
405                        const unsigned char *aad, int an,
406                        const unsigned char *tag, int tn, int encdec)
407 {
408     const EVP_CIPHER *c;
409
410 #ifdef OPENSSL_NO_OCB
411     if (strstr(cipher, "ocb") != NULL)
412         return 1;
413 #endif
414     c = EVP_get_cipherbyname(cipher);
415     if (!c)
416         return 0;
417
418     test1(c, key, kn, iv, in, plaintext, pn, ciphertext, cn, aad, an, tag, tn,
419           encdec);
420
421     return 1;
422 }
423
424 static int test_digest(const char *digest,
425                        const unsigned char *plaintext, int pn,
426                        const unsigned char *ciphertext, unsigned int cn)
427 {
428     const EVP_MD *d;
429     EVP_MD_CTX ctx;
430     unsigned char md[EVP_MAX_MD_SIZE];
431     unsigned int mdn;
432
433     d = EVP_get_digestbyname(digest);
434     if (!d)
435         return 0;
436
437     printf("Testing digest %s\n", EVP_MD_name(d));
438     hexdump(stdout, "Plaintext", plaintext, pn);
439     hexdump(stdout, "Digest", ciphertext, cn);
440
441     EVP_MD_CTX_init(&ctx);
442     if (!EVP_DigestInit_ex(&ctx, d, NULL)) {
443         fprintf(stderr, "DigestInit failed\n");
444         ERR_print_errors_fp(stderr);
445         EXIT(100);
446     }
447     if (!EVP_DigestUpdate(&ctx, plaintext, pn)) {
448         fprintf(stderr, "DigestUpdate failed\n");
449         ERR_print_errors_fp(stderr);
450         EXIT(101);
451     }
452     if (!EVP_DigestFinal_ex(&ctx, md, &mdn)) {
453         fprintf(stderr, "DigestFinal failed\n");
454         ERR_print_errors_fp(stderr);
455         EXIT(101);
456     }
457     EVP_MD_CTX_cleanup(&ctx);
458
459     if (mdn != cn) {
460         fprintf(stderr, "Digest length mismatch, got %d expected %d\n", mdn,
461                 cn);
462         EXIT(102);
463     }
464
465     if (memcmp(md, ciphertext, cn)) {
466         fprintf(stderr, "Digest mismatch\n");
467         hexdump(stderr, "Got", md, cn);
468         hexdump(stderr, "Expected", ciphertext, cn);
469         EXIT(103);
470     }
471
472     printf("\n");
473
474     EVP_MD_CTX_cleanup(&ctx);
475
476     return 1;
477 }
478
479 int main(int argc, char **argv)
480 {
481     const char *szTestFile;
482     FILE *f;
483
484     if (argc != 2) {
485         fprintf(stderr, "%s <test file>\n", argv[0]);
486         EXIT(1);
487     }
488     CRYPTO_malloc_debug_init();
489     CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
490     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
491
492     szTestFile = argv[1];
493
494     f = fopen(szTestFile, "r");
495     if (!f) {
496         perror(szTestFile);
497         EXIT(2);
498     }
499     ERR_load_crypto_strings();
500     /* Load up the software EVP_CIPHER and EVP_MD definitions */
501     OpenSSL_add_all_ciphers();
502     OpenSSL_add_all_digests();
503 #ifndef OPENSSL_NO_ENGINE
504     /* Load all compiled-in ENGINEs */
505     ENGINE_load_builtin_engines();
506 #endif
507 #if 0
508     OPENSSL_config();
509 #endif
510 #ifndef OPENSSL_NO_ENGINE
511     /*
512      * Register all available ENGINE implementations of ciphers and digests.
513      * This could perhaps be changed to "ENGINE_register_all_complete()"?
514      */
515     ENGINE_register_all_ciphers();
516     ENGINE_register_all_digests();
517     /*
518      * If we add command-line options, this statement should be switchable.
519      * It'll prevent ENGINEs being ENGINE_init()ialised for cipher/digest use
520      * if they weren't already initialised.
521      */
522     /* ENGINE_set_cipher_flags(ENGINE_CIPHER_FLAG_NOINIT); */
523 #endif
524
525     for (;;) {
526         char line[4096];
527         char *p;
528         char *cipher;
529         unsigned char *iv, *key, *plaintext, *ciphertext, *aad, *tag;
530         int encdec;
531         int kn, in, pn, cn;
532         int an = 0;
533         int tn = 0;
534
535         if (!fgets((char *)line, sizeof line, f))
536             break;
537         if (line[0] == '#' || line[0] == '\n')
538             continue;
539         p = line;
540         cipher = sstrsep(&p, ":");
541         key = ustrsep(&p, ":");
542         iv = ustrsep(&p, ":");
543         plaintext = ustrsep(&p, ":");
544         ciphertext = ustrsep(&p, ":");
545         if (p[-1] == '\n') {
546             encdec = -1;
547             p[-1] = '\0';
548             tag = aad = NULL;
549             an = tn = 0;
550         } else {
551             aad = ustrsep(&p, ":");
552             tag = ustrsep(&p, ":");
553             if (tag == NULL) {
554                 p = (char *)aad;
555                 tag = aad = NULL;
556                 an = tn = 0;
557             }
558             if (p[-1] == '\n') {
559                 encdec = -1;
560                 p[-1] = '\0';
561             } else
562                 encdec = atoi(sstrsep(&p, "\n"));
563         }
564
565         kn = convert(key);
566         in = convert(iv);
567         pn = convert(plaintext);
568         cn = convert(ciphertext);
569         if (aad) {
570             an = convert(aad);
571             tn = convert(tag);
572         }
573
574         if (!test_cipher
575             (cipher, key, kn, iv, in, plaintext, pn, ciphertext, cn, aad, an,
576              tag, tn, encdec)
577             && !test_digest(cipher, plaintext, pn, ciphertext, cn)) {
578 #ifdef OPENSSL_NO_AES
579             if (strstr(cipher, "AES") == cipher) {
580                 fprintf(stdout, "Cipher disabled, skipping %s\n", cipher);
581                 continue;
582             }
583 #endif
584 #ifdef OPENSSL_NO_DES
585             if (strstr(cipher, "DES") == cipher) {
586                 fprintf(stdout, "Cipher disabled, skipping %s\n", cipher);
587                 continue;
588             }
589 #endif
590 #ifdef OPENSSL_NO_RC4
591             if (strstr(cipher, "RC4") == cipher) {
592                 fprintf(stdout, "Cipher disabled, skipping %s\n", cipher);
593                 continue;
594             }
595 #endif
596 #ifdef OPENSSL_NO_CAMELLIA
597             if (strstr(cipher, "CAMELLIA") == cipher) {
598                 fprintf(stdout, "Cipher disabled, skipping %s\n", cipher);
599                 continue;
600             }
601 #endif
602 #ifdef OPENSSL_NO_SEED
603             if (strstr(cipher, "SEED") == cipher) {
604                 fprintf(stdout, "Cipher disabled, skipping %s\n", cipher);
605                 continue;
606             }
607 #endif
608             fprintf(stderr, "Can't find %s\n", cipher);
609             EXIT(3);
610         }
611     }
612     fclose(f);
613
614 #ifndef OPENSSL_NO_ENGINE
615     ENGINE_cleanup();
616 #endif
617     EVP_cleanup();
618     CRYPTO_cleanup_all_ex_data();
619     ERR_remove_thread_state(NULL);
620     ERR_free_strings();
621     CRYPTO_mem_leaks_fp(stderr);
622
623     return 0;
624 }