Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7d / crypto / evp / evp_test.c
blob28460173f7ef0a2220ddb31f150948b7e25b4ba2
1 /* Written by Ben Laurie, 2001 */
2 /*
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
7 * are met:
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
15 * distribution.
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
32 * acknowledgment:
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 #include <stdio.h>
51 #include <string.h>
53 #include "../e_os.h"
55 #include <openssl/evp.h>
56 #ifndef OPENSSL_NO_ENGINE
57 #include <openssl/engine.h>
58 #endif
59 #include <openssl/err.h>
60 #include <openssl/conf.h>
62 static void hexdump(FILE *f,const char *title,const unsigned char *s,int l)
64 int n=0;
66 fprintf(f,"%s",title);
67 for( ; n < l ; ++n)
69 if((n%16) == 0)
70 fprintf(f,"\n%04x",n);
71 fprintf(f," %02x",s[n]);
73 fprintf(f,"\n");
76 static int convert(unsigned char *s)
78 unsigned char *d;
80 for(d=s ; *s ; s+=2,++d)
82 unsigned int n;
84 if(!s[1])
86 fprintf(stderr,"Odd number of hex digits!");
87 EXIT(4);
89 sscanf((char *)s,"%2x",&n);
90 *d=(unsigned char)n;
92 return s-d;
95 static char *sstrsep(char **string, const char *delim)
97 char isdelim[256];
98 char *token = *string;
100 if (**string == 0)
101 return NULL;
103 memset(isdelim, 0, 256);
104 isdelim[0] = 1;
106 while (*delim)
108 isdelim[(unsigned char)(*delim)] = 1;
109 delim++;
112 while (!isdelim[(unsigned char)(**string)])
114 (*string)++;
117 if (**string)
119 **string = 0;
120 (*string)++;
123 return token;
126 static unsigned char *ustrsep(char **p,const char *sep)
127 { return (unsigned char *)sstrsep(p,sep); }
129 static int test1_exit(int ec)
131 EXIT(ec);
132 return(0); /* To keep some compilers quiet */
135 static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn,
136 const unsigned char *iv,int in,
137 const unsigned char *plaintext,int pn,
138 const unsigned char *ciphertext,int cn,
139 int encdec)
141 EVP_CIPHER_CTX ctx;
142 unsigned char out[4096];
143 int outl,outl2;
145 printf("Testing cipher %s%s\n",EVP_CIPHER_name(c),
146 (encdec == 1 ? "(encrypt)" : (encdec == 0 ? "(decrypt)" : "(encrypt/decrypt)")));
147 hexdump(stdout,"Key",key,kn);
148 if(in)
149 hexdump(stdout,"IV",iv,in);
150 hexdump(stdout,"Plaintext",plaintext,pn);
151 hexdump(stdout,"Ciphertext",ciphertext,cn);
153 if(kn != c->key_len)
155 fprintf(stderr,"Key length doesn't match, got %d expected %d\n",kn,
156 c->key_len);
157 test1_exit(5);
159 EVP_CIPHER_CTX_init(&ctx);
160 if (encdec != 0)
162 if(!EVP_EncryptInit_ex(&ctx,c,NULL,key,iv))
164 fprintf(stderr,"EncryptInit failed\n");
165 test1_exit(10);
167 EVP_CIPHER_CTX_set_padding(&ctx,0);
169 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
171 fprintf(stderr,"Encrypt failed\n");
172 test1_exit(6);
174 if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2))
176 fprintf(stderr,"EncryptFinal failed\n");
177 test1_exit(7);
180 if(outl+outl2 != cn)
182 fprintf(stderr,"Ciphertext length mismatch got %d expected %d\n",
183 outl+outl2,cn);
184 test1_exit(8);
187 if(memcmp(out,ciphertext,cn))
189 fprintf(stderr,"Ciphertext mismatch\n");
190 hexdump(stderr,"Got",out,cn);
191 hexdump(stderr,"Expected",ciphertext,cn);
192 test1_exit(9);
196 if (encdec <= 0)
198 if(!EVP_DecryptInit_ex(&ctx,c,NULL,key,iv))
200 fprintf(stderr,"DecryptInit failed\n");
201 test1_exit(11);
203 EVP_CIPHER_CTX_set_padding(&ctx,0);
205 if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
207 fprintf(stderr,"Decrypt failed\n");
208 test1_exit(6);
210 if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2))
212 fprintf(stderr,"DecryptFinal failed\n");
213 test1_exit(7);
216 if(outl+outl2 != cn)
218 fprintf(stderr,"Plaintext length mismatch got %d expected %d\n",
219 outl+outl2,cn);
220 test1_exit(8);
223 if(memcmp(out,plaintext,cn))
225 fprintf(stderr,"Plaintext mismatch\n");
226 hexdump(stderr,"Got",out,cn);
227 hexdump(stderr,"Expected",plaintext,cn);
228 test1_exit(9);
232 EVP_CIPHER_CTX_cleanup(&ctx);
234 printf("\n");
237 static int test_cipher(const char *cipher,const unsigned char *key,int kn,
238 const unsigned char *iv,int in,
239 const unsigned char *plaintext,int pn,
240 const unsigned char *ciphertext,int cn,
241 int encdec)
243 const EVP_CIPHER *c;
245 c=EVP_get_cipherbyname(cipher);
246 if(!c)
247 return 0;
249 test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec);
251 return 1;
254 static int test_digest(const char *digest,
255 const unsigned char *plaintext,int pn,
256 const unsigned char *ciphertext, unsigned int cn)
258 const EVP_MD *d;
259 EVP_MD_CTX ctx;
260 unsigned char md[EVP_MAX_MD_SIZE];
261 unsigned int mdn;
263 d=EVP_get_digestbyname(digest);
264 if(!d)
265 return 0;
267 printf("Testing digest %s\n",EVP_MD_name(d));
268 hexdump(stdout,"Plaintext",plaintext,pn);
269 hexdump(stdout,"Digest",ciphertext,cn);
271 EVP_MD_CTX_init(&ctx);
272 if(!EVP_DigestInit_ex(&ctx,d, NULL))
274 fprintf(stderr,"DigestInit failed\n");
275 EXIT(100);
277 if(!EVP_DigestUpdate(&ctx,plaintext,pn))
279 fprintf(stderr,"DigestUpdate failed\n");
280 EXIT(101);
282 if(!EVP_DigestFinal_ex(&ctx,md,&mdn))
284 fprintf(stderr,"DigestFinal failed\n");
285 EXIT(101);
287 EVP_MD_CTX_cleanup(&ctx);
289 if(mdn != cn)
291 fprintf(stderr,"Digest length mismatch, got %d expected %d\n",mdn,cn);
292 EXIT(102);
295 if(memcmp(md,ciphertext,cn))
297 fprintf(stderr,"Digest mismatch\n");
298 hexdump(stderr,"Got",md,cn);
299 hexdump(stderr,"Expected",ciphertext,cn);
300 EXIT(103);
303 printf("\n");
305 EVP_MD_CTX_cleanup(&ctx);
307 return 1;
310 int main(int argc,char **argv)
312 const char *szTestFile;
313 FILE *f;
315 if(argc != 2)
317 fprintf(stderr,"%s <test file>\n",argv[0]);
318 EXIT(1);
320 CRYPTO_malloc_debug_init();
321 CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
322 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
324 szTestFile=argv[1];
326 f=fopen(szTestFile,"r");
327 if(!f)
329 perror(szTestFile);
330 EXIT(2);
333 /* Load up the software EVP_CIPHER and EVP_MD definitions */
334 OpenSSL_add_all_ciphers();
335 OpenSSL_add_all_digests();
336 #ifndef OPENSSL_NO_ENGINE
337 /* Load all compiled-in ENGINEs */
338 ENGINE_load_builtin_engines();
339 #endif
340 #if 0
341 OPENSSL_config();
342 #endif
343 #ifndef OPENSSL_NO_ENGINE
344 /* Register all available ENGINE implementations of ciphers and digests.
345 * This could perhaps be changed to "ENGINE_register_all_complete()"? */
346 ENGINE_register_all_ciphers();
347 ENGINE_register_all_digests();
348 /* If we add command-line options, this statement should be switchable.
349 * It'll prevent ENGINEs being ENGINE_init()ialised for cipher/digest use if
350 * they weren't already initialised. */
351 /* ENGINE_set_cipher_flags(ENGINE_CIPHER_FLAG_NOINIT); */
352 #endif
354 for( ; ; )
356 char line[4096];
357 char *p;
358 char *cipher;
359 unsigned char *iv,*key,*plaintext,*ciphertext;
360 int encdec;
361 int kn,in,pn,cn;
363 if(!fgets((char *)line,sizeof line,f))
364 break;
365 if(line[0] == '#' || line[0] == '\n')
366 continue;
367 p=line;
368 cipher=sstrsep(&p,":");
369 key=ustrsep(&p,":");
370 iv=ustrsep(&p,":");
371 plaintext=ustrsep(&p,":");
372 ciphertext=ustrsep(&p,":");
373 if (p[-1] == '\n') {
374 p[-1] = '\0';
375 encdec = -1;
376 } else {
377 encdec = atoi(sstrsep(&p,"\n"));
381 kn=convert(key);
382 in=convert(iv);
383 pn=convert(plaintext);
384 cn=convert(ciphertext);
386 if(!test_cipher(cipher,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec)
387 && !test_digest(cipher,plaintext,pn,ciphertext,cn))
389 fprintf(stderr,"Can't find %s\n",cipher);
390 EXIT(3);
394 #ifndef OPENSSL_NO_ENGINE
395 ENGINE_cleanup();
396 #endif
397 EVP_cleanup();
398 CRYPTO_cleanup_all_ex_data();
399 ERR_remove_state(0);
400 ERR_free_strings();
401 CRYPTO_mem_leaks_fp(stderr);
403 return 0;