Print the debug thingies on stderr instead of stdout. If for nothing
[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 #ifndef OPENSSL_NO_ENGINE
57 #include <openssl/engine.h>
58 #endif
59 #include <openssl/err.h>
60 #include <openssl/conf.h>
61
62 static void hexdump(FILE *f,const char *title,const unsigned char *s,int l)
63     {
64     int n=0;
65
66     fprintf(f,"%s",title);
67     for( ; n < l ; ++n)
68         {
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         {
82         unsigned int n;
83
84         if(!s[1])
85             {
86             fprintf(stderr,"Odd number of hex digits!");
87             EXIT(4);
88             }
89         sscanf((char *)s,"%2x",&n);
90         *d=(unsigned char)n;
91         }
92     return s-d;
93     }
94
95 static char *sstrsep(char **string, const char *delim)
96     {
97     char isdelim[256];
98     char *token = *string;
99
100     if (**string == 0)
101         return NULL;
102
103     memset(isdelim, 0, 256);
104     isdelim[0] = 1;
105
106     while (*delim)
107         {
108         isdelim[(unsigned char)(*delim)] = 1;
109         delim++;
110         }
111
112     while (!isdelim[(unsigned char)(**string)])
113         {
114         (*string)++;
115         }
116
117     if (**string)
118         {
119         **string = 0;
120         (*string)++;
121         }
122
123     return token;
124     }
125
126 static unsigned char *ustrsep(char **p,const char *sep)
127     { return (unsigned char *)sstrsep(p,sep); }
128
129 static int test1_exit(int ec)
130         {
131         EXIT(ec);
132         return(0);              /* To keep some compilers quiet */
133         }
134
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)
140     {
141     EVP_CIPHER_CTX ctx;
142     unsigned char out[4096];
143     int outl,outl2;
144
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);
152     
153     if(kn != c->key_len)
154         {
155         fprintf(stderr,"Key length doesn't match, got %d expected %d\n",kn,
156                 c->key_len);
157         test1_exit(5);
158         }
159     EVP_CIPHER_CTX_init(&ctx);
160     if (encdec != 0)
161         {
162         if(!EVP_EncryptInit_ex(&ctx,c,NULL,key,iv))
163             {
164             fprintf(stderr,"EncryptInit failed\n");
165             test1_exit(10);
166             }
167         EVP_CIPHER_CTX_set_padding(&ctx,0);
168
169         if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn))
170             {
171             fprintf(stderr,"Encrypt failed\n");
172             test1_exit(6);
173             }
174         if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2))
175             {
176             fprintf(stderr,"EncryptFinal failed\n");
177             test1_exit(7);
178             }
179
180         if(outl+outl2 != cn)
181             {
182             fprintf(stderr,"Ciphertext length mismatch got %d expected %d\n",
183                     outl+outl2,cn);
184             test1_exit(8);
185             }
186
187         if(memcmp(out,ciphertext,cn))
188             {
189             fprintf(stderr,"Ciphertext mismatch\n");
190             hexdump(stderr,"Got",out,cn);
191             hexdump(stderr,"Expected",ciphertext,cn);
192             test1_exit(9);
193             }
194         }
195
196     if (encdec <= 0)
197         {
198         if(!EVP_DecryptInit_ex(&ctx,c,NULL,key,iv))
199             {
200             fprintf(stderr,"DecryptInit failed\n");
201             test1_exit(11);
202             }
203         EVP_CIPHER_CTX_set_padding(&ctx,0);
204
205         if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn))
206             {
207             fprintf(stderr,"Decrypt failed\n");
208             test1_exit(6);
209             }
210         if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2))
211             {
212             fprintf(stderr,"DecryptFinal failed\n");
213             test1_exit(7);
214             }
215
216         if(outl+outl2 != cn)
217             {
218             fprintf(stderr,"Plaintext length mismatch got %d expected %d\n",
219                     outl+outl2,cn);
220             test1_exit(8);
221             }
222
223         if(memcmp(out,plaintext,cn))
224             {
225             fprintf(stderr,"Plaintext mismatch\n");
226             hexdump(stderr,"Got",out,cn);
227             hexdump(stderr,"Expected",plaintext,cn);
228             test1_exit(9);
229             }
230         }
231
232     EVP_CIPHER_CTX_cleanup(&ctx);
233
234     printf("\n");
235     }
236
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)
242     {
243     const EVP_CIPHER *c;
244
245     c=EVP_get_cipherbyname(cipher);
246     if(!c)
247         return 0;
248
249     test1(c,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec);
250
251     return 1;
252     }
253
254 static int test_digest(const char *digest,
255                        const unsigned char *plaintext,int pn,
256                        const unsigned char *ciphertext, unsigned int cn)
257     {
258     const EVP_MD *d;
259     EVP_MD_CTX ctx;
260     unsigned char md[EVP_MAX_MD_SIZE];
261     unsigned int mdn;
262
263     d=EVP_get_digestbyname(digest);
264     if(!d)
265         return 0;
266
267     printf("Testing digest %s\n",EVP_MD_name(d));
268     hexdump(stdout,"Plaintext",plaintext,pn);
269     hexdump(stdout,"Digest",ciphertext,cn);
270
271     EVP_MD_CTX_init(&ctx);
272     if(!EVP_DigestInit_ex(&ctx,d, NULL))
273         {
274         fprintf(stderr,"DigestInit failed\n");
275         EXIT(100);
276         }
277     if(!EVP_DigestUpdate(&ctx,plaintext,pn))
278         {
279         fprintf(stderr,"DigestUpdate failed\n");
280         EXIT(101);
281         }
282     if(!EVP_DigestFinal_ex(&ctx,md,&mdn))
283         {
284         fprintf(stderr,"DigestFinal failed\n");
285         EXIT(101);
286         }
287     EVP_MD_CTX_cleanup(&ctx);
288
289     if(mdn != cn)
290         {
291         fprintf(stderr,"Digest length mismatch, got %d expected %d\n",mdn,cn);
292         EXIT(102);
293         }
294
295     if(memcmp(md,ciphertext,cn))
296         {
297         fprintf(stderr,"Digest mismatch\n");
298         hexdump(stderr,"Got",md,cn);
299         hexdump(stderr,"Expected",ciphertext,cn);
300         EXIT(103);
301         }
302
303     printf("\n");
304
305     EVP_MD_CTX_cleanup(&ctx);
306
307     return 1;
308     }
309
310 int main(int argc,char **argv)
311     {
312     const char *szTestFile;
313     FILE *f;
314
315     if(argc != 2)
316         {
317         fprintf(stderr,"%s <test file>\n",argv[0]);
318         EXIT(1);
319         }
320     CRYPTO_malloc_debug_init();
321     CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL);
322     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
323
324     szTestFile=argv[1];
325
326     f=fopen(szTestFile,"r");
327     if(!f)
328         {
329         perror(szTestFile);
330         EXIT(2);
331         }
332
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
353
354     for( ; ; )
355         {
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;
362
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"));
378         }
379               
380
381         kn=convert(key);
382         in=convert(iv);
383         pn=convert(plaintext);
384         cn=convert(ciphertext);
385
386         if(!test_cipher(cipher,key,kn,iv,in,plaintext,pn,ciphertext,cn,encdec)
387            && !test_digest(cipher,plaintext,pn,ciphertext,cn))
388             {
389             fprintf(stderr,"Can't find %s\n",cipher);
390             EXIT(3);
391             }
392         }
393
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);
402
403     return 0;
404     }