Have all tests use EXIT() to exit rather than exit(), since the latter doesn't
[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/evp.h>
56 #include <openssl/engine.h>
57 #include <openssl/conf.h>
58
59 static void hexdump(FILE *f,const char *title,const unsigned char *s,int l)
60     {
61     int n=0;
62
63     fprintf(f,"%s",title);
64     for( ; n < l ; ++n)
65         {
66         if((n%16) == 0)
67             fprintf(f,"\n%04x",n);
68         fprintf(f," %02x",s[n]);
69         }
70     fprintf(f,"\n");
71     }
72
73 static int convert(unsigned char *s)
74     {
75     unsigned char *d;
76
77     for(d=s ; *s ; s+=2,++d)
78         {
79         unsigned int n;
80
81         if(!s[1])
82             {
83             fprintf(stderr,"Odd number of hex digits!");
84             EXIT(4);
85             }
86         sscanf((char *)s,"%2x",&n);
87         *d=(unsigned char)n;
88         }
89     return s-d;
90     }
91
92 static char *sstrsep(char **string, const char *delim)
93     {
94     char isdelim[256];
95     char *token = *string;
96
97     if (**string == 0)
98         return NULL;
99
100     memset(isdelim, 0, 256);
101     isdelim[0] = 1;
102
103     while (*delim)
104         {
105         isdelim[(unsigned char)(*delim)] = 1;
106         delim++;
107         }
108
109     while (!isdelim[(unsigned char)(**string)])
110         {
111         (*string)++;
112         }
113
114     if (**string)
115         {
116         **string = 0;
117         (*string)++;
118         }
119
120     return token;
121     }
122
123 static unsigned char *ustrsep(char **p,const char *sep)
124     { return (unsigned char *)sstrsep(p,sep); }
125
126 static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn,
127                   const unsigned char *iv,int in,
128                   const unsigned char *plaintext,int pn,
129                   const unsigned char *ciphertext,int cn,
130                   int encdec)
131     {
132     EVP_CIPHER_CTX ctx;
133     unsigned char out[4096];
134     int outl,outl2;
135
136     printf("Testing cipher %s%s\n",EVP_CIPHER_name(c),
137            (encdec == 1 ? "(encrypt)" : (encdec == 0 ? "(decrypt)" : "(encrypt/decrypt)")));
138     hexdump(stdout,"Key",key,kn);
139     if(in)
140         hexdump(stdout,"IV",iv,in);
141     hexdump(stdout,"Plaintext",plaintext,pn);
142     hexdump(stdout,"Ciphertext",ciphertext,cn);
143     
144     if(kn != c->key_len)
145         {
146         fprintf(stderr,"Key length doesn't match, got %d expected %d\n",kn,
147                 c->key_len);
148         EXIT(5);
149         }
150     EVP_CIPHER_CTX_init(&ctx);
151     if (encdec != 0)
152         {
153         if(!EVP_EncryptInit_ex(&ctx,c,NULL,key,iv))
154             {
155             fprintf(stderr,"EncryptInit failed\n");
156             EXIT(10);
157             }
158         EVP_CIPHER_CTX_set_padding(&ctx,0);
159
160         if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
161             {
162             fprintf(stderr,"Encrypt failed\n");
163             EXIT(6);
164             }
165         if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2))
166             {
167             fprintf(stderr,"EncryptFinal failed\n");
168             EXIT(7);
169             }
170
171         if(outl+outl2 != cn)
172             {
173             fprintf(stderr,"Ciphertext length mismatch got %d expected %d\n",
174                     outl+outl2,cn);
175             EXIT(8);
176             }
177
178         if(memcmp(out,ciphertext,cn))
179             {
180             fprintf(stderr,"Ciphertext mismatch\n");
181             hexdump(stderr,"Got",out,cn);
182             hexdump(stderr,"Expected",ciphertext,cn);
183             EXIT(9);
184             }
185         }
186
187     if (encdec <= 0)
188         {
189         if(!EVP_DecryptInit_ex(&ctx,c,NULL,key,iv))
190             {
191             fprintf(stderr,"DecryptInit failed\n");
192             EXIT(11);
193             }
194         EVP_CIPHER_CTX_set_padding(&ctx,0);
195
196         if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
197             {
198             fprintf(stderr,"Decrypt failed\n");
199             EXIT(6);
200             }
201         if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2))
202             {
203             fprintf(stderr,"DecryptFinal failed\n");
204             EXIT(7);
205             }
206
207         if(outl+outl2 != cn)
208             {
209             fprintf(stderr,"Plaintext length mismatch got %d expected %d\n",
210                     outl+outl2,cn);
211             EXIT(8);
212             }
213
214         if(memcmp(out,plaintext,cn))
215             {
216             fprintf(stderr,"Plaintext mismatch\n");
217             hexdump(stderr,"Got",out,cn);
218             hexdump(stderr,"Expected",plaintext,cn);
219             EXIT(9);
220             }
221         }
222
223     EVP_CIPHER_CTX_cleanup(&ctx);
224
225     printf("\n");
226     }
227
228 static int test_cipher(const char *cipher,const unsigned char *key,int kn,
229                        const unsigned char *iv,int in,
230                        const unsigned char *plaintext,int pn,
231                        const unsigned char *ciphertext,int cn,
232                        int encdec)
233     {
234     const EVP_CIPHER *c;
235
236     c=EVP_get_cipherbyname(cipher);
237     if(!c)
238         return 0;
239
240     test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec);
241
242     return 1;
243     }
244
245 static int test_digest(const char *digest,
246                        const unsigned char *plaintext,int pn,
247                        const unsigned char *ciphertext, unsigned int cn)
248     {
249     const EVP_MD *d;
250     EVP_MD_CTX ctx;
251     unsigned char md[EVP_MAX_MD_SIZE];
252     unsigned int mdn;
253
254     d=EVP_get_digestbyname(digest);
255     if(!d)
256         return 0;
257
258     printf("Testing digest %s\n",EVP_MD_name(d));
259     hexdump(stdout,"Plaintext",plaintext,pn);
260     hexdump(stdout,"Digest",ciphertext,cn);
261
262     EVP_MD_CTX_init(&ctx);
263     if(!EVP_DigestInit_ex(&ctx,d, NULL))
264         {
265         fprintf(stderr,"DigestInit failed\n");
266         EXIT(100);
267         }
268     if(!EVP_DigestUpdate(&ctx,plaintext,pn))
269         {
270         fprintf(stderr,"DigestUpdate failed\n");
271         EXIT(101);
272         }
273     if(!EVP_DigestFinal_ex(&ctx,md,&mdn))
274         {
275         fprintf(stderr,"DigestFinal failed\n");
276         EXIT(101);
277         }
278     EVP_MD_CTX_cleanup(&ctx);
279
280     if(mdn != cn)
281         {
282         fprintf(stderr,"Digest length mismatch, got %d expected %d\n",mdn,cn);
283         EXIT(102);
284         }
285
286     if(memcmp(md,ciphertext,cn))
287         {
288         fprintf(stderr,"Digest mismatch\n");
289         hexdump(stderr,"Got",md,cn);
290         hexdump(stderr,"Expected",ciphertext,cn);
291         EXIT(103);
292         }
293
294     printf("\n");
295
296     EVP_MD_CTX_cleanup(&ctx);
297
298     return 1;
299     }
300
301 int main(int argc,char **argv)
302     {
303     const char *szTestFile;
304     FILE *f;
305
306     if(argc != 2)
307         {
308         fprintf(stderr,"%s <test file>\n",argv[0]);
309         EXIT(1);
310         }
311     CRYPTO_malloc_debug_init();
312     CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
313     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
314
315     szTestFile=argv[1];
316
317     f=fopen(szTestFile,"r");
318     if(!f)
319         {
320         perror(szTestFile);
321         EXIT(2);
322         }
323
324     /* Load up the software EVP_CIPHER and EVP_MD definitions */
325     OpenSSL_add_all_ciphers();
326     OpenSSL_add_all_digests();
327     /* Load all compiled-in ENGINEs */
328     ENGINE_load_builtin_engines();
329 #if 0
330     OPENSSL_config();
331 #endif
332     /* Register all available ENGINE implementations of ciphers and digests.
333      * This could perhaps be changed to "ENGINE_register_all_complete()"? */
334     ENGINE_register_all_ciphers();
335     ENGINE_register_all_digests();
336     /* If we add command-line options, this statement should be switchable.
337      * It'll prevent ENGINEs being ENGINE_init()ialised for cipher/digest use if
338      * they weren't already initialised. */
339     /* ENGINE_set_cipher_flags(ENGINE_CIPHER_FLAG_NOINIT); */
340
341     for( ; ; )
342         {
343         char line[4096];
344         char *p;
345         char *cipher;
346         unsigned char *iv,*key,*plaintext,*ciphertext;
347         int encdec;
348         int kn,in,pn,cn;
349
350         if(!fgets((char *)line,sizeof line,f))
351             break;
352         if(line[0] == '#' || line[0] == '\n')
353             continue;
354         p=line;
355         cipher=sstrsep(&p,":"); 
356         key=ustrsep(&p,":");
357         iv=ustrsep(&p,":");
358         plaintext=ustrsep(&p,":");
359         ciphertext=ustrsep(&p,":");
360         if (p[-1] == '\n') {
361             p[-1] = '\0';
362             encdec = -1;
363         } else {
364             encdec = atoi(sstrsep(&p,"\n"));
365         }
366               
367
368         kn=convert(key);
369         in=convert(iv);
370         pn=convert(plaintext);
371         cn=convert(ciphertext);
372
373         if(!test_cipher(cipher,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec)
374            && !test_digest(cipher,plaintext,pn,ciphertext,cn))
375             {
376             fprintf(stderr,"Can't find %s\n",cipher);
377             EXIT(3);
378             }
379         }
380
381     ENGINE_cleanup();
382     EVP_cleanup();
383     CRYPTO_cleanup_all_ex_data();
384     ERR_remove_state(0);
385     ERR_free_strings();
386     CRYPTO_mem_leaks_fp(stderr);
387
388     return 0;
389     }