Update contrib.
1 /* Written by Ben Laurie, 2001 */
3 * Copyright (c) 2001 The OpenSSL Project. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
31 * 6. Redistributions of any form whatsoever must retain the following
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
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.
50 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
61 #include <openssl/opensslconf.h>
62 #include <openssl/evp.h>
63 #ifndef OPENSSL_NO_ENGINE
64 #include <openssl/engine.h>
66 #include <openssl/err.h>
67 #include <openssl/conf.h>
79 #define stdin fp_stdin
80 #define stdout fp_stdout
81 #define stderr fp_stderr
83 extern FILE *fp_stdout;
84 extern FILE *fp_stderr;
87 static void hexdump(FILE *f,const char *title,const unsigned char *s,int l)
91 fprintf(f,"%s",title);
95 fprintf(f,"\n%04x",n);
96 fprintf(f," %02x",s[n]);
101 static int convert(unsigned char *s)
105 for(d=s ; (*s)&&(*s!='\r') ; s+=2,++d)
111 fprintf(stderr,"Odd number of hex digits!");
115 sscanf((char *)s,"%2x",&n);
121 static char *sstrsep(char **string, const char *delim)
124 char *token = *string;
129 memset(isdelim, 0, 256);
134 isdelim[(unsigned char)(*delim)] = 1;
138 while (!isdelim[(unsigned char)(**string)])
152 static unsigned char *ustrsep(char **p,const char *sep)
153 { return (unsigned char *)sstrsep(p,sep); }
155 static int test1_exit(int ec)
158 return(0); /* To keep some compilers quiet */
161 static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn,
162 const unsigned char *iv,int in,
163 const unsigned char *plaintext,int pn,
164 const unsigned char *ciphertext,int cn,
169 unsigned char out[4096];
171 unsigned char out[400];
175 fprintf(stdout,"Testing cipher %s%s\n",EVP_CIPHER_name(c),
176 (encdec == 1 ? "(encrypt)" : (encdec == 0 ? "(decrypt)" : "(encrypt/decrypt)")));
177 hexdump(stdout,"Key",key,kn);
179 hexdump(stdout,"IV",iv,in);
180 hexdump(stdout,"Plaintext",plaintext,pn);
181 hexdump(stdout,"Ciphertext",ciphertext,cn);
185 fprintf(stderr,"Key length doesn't match, got %d expected %d\n",kn,
189 EVP_CIPHER_CTX_init(&ctx);
196 if(!EVP_EncryptInit_ex(&ctx,c,NULL,key,iv))
202 fprintf(stderr,"EncryptInit failed\n");
203 ERR_print_errors_fp(stderr);
211 EVP_CIPHER_CTX_set_padding(&ctx,0);
213 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
219 fprintf(stderr,"Encrypt failed\n");
220 ERR_print_errors_fp(stderr);
227 if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2))
233 fprintf(stderr,"EncryptFinal failed\n");
234 ERR_print_errors_fp(stderr);
244 fprintf(stderr,"Ciphertext length mismatch got %d expected %d\n",
249 if(memcmp(out,ciphertext,cn))
251 fprintf(stderr,"Ciphertext mismatch\n");
252 hexdump(stderr,"Got",out,cn);
253 hexdump(stderr,"Expected",ciphertext,cn);
260 if(!EVP_DecryptInit_ex(&ctx,c,NULL,key,iv))
266 fprintf(stderr,"DecryptInit failed\n");
267 ERR_print_errors_fp(stderr);
274 EVP_CIPHER_CTX_set_padding(&ctx,0);
281 if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
287 fprintf(stderr,"Decrypt failed\n");
288 ERR_print_errors_fp(stderr);
295 if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2))
301 fprintf(stderr,"DecryptFinal failed\n");
302 ERR_print_errors_fp(stderr);
312 fprintf(stderr,"Plaintext length mismatch got %d expected %d\n",
317 if(memcmp(out,plaintext,cn))
319 fprintf(stderr,"Plaintext mismatch\n");
320 hexdump(stderr,"Got",out,cn);
321 hexdump(stderr,"Expected",plaintext,cn);
326 EVP_CIPHER_CTX_cleanup(&ctx);
332 fprintf(stdout,"Test Case passed!\n");
336 static int test_cipher(const char *cipher,const unsigned char *key,int kn,
337 const unsigned char *iv,int in,
338 const unsigned char *plaintext,int pn,
339 const unsigned char *ciphertext,int cn,
344 c=EVP_get_cipherbyname(cipher);
345 if(c==NULL&&errno==ENOMEM)
352 test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec);
357 static int test_digest(const char *digest,
358 const unsigned char *plaintext,int pn,
359 const unsigned char *ciphertext, unsigned int cn)
363 unsigned char md[EVP_MAX_MD_SIZE];
366 d=EVP_get_digestbyname(digest);
367 if(d==0&&errno==ENOMEM)
375 fprintf(stdout,"Testing digest %s\n",EVP_MD_name(d));
376 hexdump(stdout,"Plaintext",plaintext,pn);
377 hexdump(stdout,"Digest",ciphertext,cn);
379 EVP_MD_CTX_init(&ctx);
385 if(!EVP_DigestInit_ex(&ctx,d, NULL))
392 fprintf(stderr,"DigestInit failed\n");
393 ERR_print_errors_fp(stderr);
397 if(!EVP_DigestUpdate(&ctx,plaintext,pn))
404 fprintf(stderr,"DigestUpdate failed\n");
405 ERR_print_errors_fp(stderr);
414 if(!EVP_DigestFinal_ex(&ctx,md,&mdn))
420 fprintf(stderr,"DigestFinal failed\n");
421 ERR_print_errors_fp(stderr);
430 EVP_MD_CTX_cleanup(&ctx);
438 fprintf(stderr,"Digest length mismatch, got %d expected %d\n",mdn,cn);
443 if(memcmp(md,ciphertext,cn))
445 fprintf(stderr,"Digest mismatch\n");
446 hexdump(stderr,"Got",md,cn);
447 hexdump(stderr,"Expected",ciphertext,cn);
452 fprintf(stdout,"done\n");
454 EVP_MD_CTX_cleanup(&ctx);
463 int main(int argc,char **argv)
465 int evp_main(int argc,char **argv)
468 const char *szTestFile;
472 fprintf(stderr,"%s <test file>\n",argv[0]);
477 /*CRYPTO_malloc_debug_init();
482 CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
487 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
495 f=fopen(szTestFile,"r");
502 fprintf(stderr,"Couldn't open file");
503 //perror(szTestFile);
507 fprintf(stderr,"Opened file sucessfully\n");
508 /* Load up the software EVP_CIPHER and EVP_MD definitions */
509 OpenSSL_add_all_ciphers();
514 fprintf(stderr,"OpenSSL_add_all_ciphers(): done\n");
515 OpenSSL_add_all_digests();
520 fprintf(stderr,"OpenSSL_add_all_digests() : done\n");
521 #ifndef OPENSSL_NO_ENGINE
522 /* Load all compiled-in ENGINEs */
523 ENGINE_load_builtin_engines();
532 #ifndef OPENSSL_NO_ENGINE
533 /* Register all available ENGINE implementations of ciphers and digests.
534 * This could perhaps be changed to "ENGINE_register_all_complete()"? */
535 ENGINE_register_all_ciphers();
540 ENGINE_register_all_digests();
545 /* If we add command-line options, this statement should be switchable.
546 * It'll prevent ENGINEs being ENGINE_init()ialised for cipher/digest use if
547 * they weren't already initialised. */
548 /* ENGINE_set_cipher_flags(ENGINE_CIPHER_FLAG_NOINIT); */
560 unsigned char *iv,*key,*plaintext,*ciphertext;
564 if(!fgets((char *)line,sizeof line,f))
566 if(line[0] == '#' || line[0] == '\n'||line[0] == '\r')
570 cipher=sstrsep(&p,":");
573 plaintext=ustrsep(&p,":");
574 ciphertext=ustrsep(&p,":");
579 encdec = atoi(sstrsep(&p,"\n"));
585 pn=convert(plaintext);
586 cn=convert(ciphertext);
587 if(!test_cipher(cipher,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec)
588 && !test_digest(cipher,plaintext,pn,ciphertext,cn))
594 #ifdef OPENSSL_NO_AES
595 if (strstr(cipher, "AES") == cipher)
597 fprintf(stdout, "Cipher disabled, skipping %s\n", cipher);
601 #ifdef OPENSSL_NO_DES
602 if (strstr(cipher, "DES") == cipher)
604 fprintf(stdout, "Cipher disabled, skipping %s\n", cipher);
608 #ifdef OPENSSL_NO_RC4
609 if (strstr(cipher, "RC4") == cipher)
611 fprintf(stdout, "Cipher disabled, skipping %s\n", cipher);
615 fprintf(stderr,"Can't find %s\n",cipher);
621 #ifndef OPENSSL_NO_ENGINE
633 CRYPTO_cleanup_all_ex_data();
648 CRYPTO_mem_leaks_fp(stderr);
653 fprintf(stderr,"*************END OF THE TEST CASE\n************");