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.
55 #include <openssl/opensslconf.h>
56 #include <openssl/evp.h>
57 #ifndef OPENSSL_NO_ENGINE
58 #include <openssl/engine.h>
60 #include <openssl/err.h>
61 #include <openssl/conf.h>
63 static void hexdump(FILE *f
,const char *title
,const unsigned char *s
,int l
)
67 fprintf(f
,"%s",title
);
71 fprintf(f
,"\n%04x",n
);
72 fprintf(f
," %02x",s
[n
]);
77 static int convert(unsigned char *s
)
81 for(d
=s
; *s
; s
+=2,++d
)
87 fprintf(stderr
,"Odd number of hex digits!");
90 sscanf((char *)s
,"%2x",&n
);
96 static char *sstrsep(char **string
, const char *delim
)
99 char *token
= *string
;
104 memset(isdelim
, 0, 256);
109 isdelim
[(unsigned char)(*delim
)] = 1;
113 while (!isdelim
[(unsigned char)(**string
)])
127 static unsigned char *ustrsep(char **p
,const char *sep
)
128 { return (unsigned char *)sstrsep(p
,sep
); }
130 static int test1_exit(int ec
)
133 return(0); /* To keep some compilers quiet */
136 static void test1(const EVP_CIPHER
*c
,const unsigned char *key
,int kn
,
137 const unsigned char *iv
,int in
,
138 const unsigned char *plaintext
,int pn
,
139 const unsigned char *ciphertext
,int cn
,
143 unsigned char out
[4096];
146 printf("Testing cipher %s%s\n",EVP_CIPHER_name(c
),
147 (encdec
== 1 ? "(encrypt)" : (encdec
== 0 ? "(decrypt)" : "(encrypt/decrypt)")));
148 hexdump(stdout
,"Key",key
,kn
);
150 hexdump(stdout
,"IV",iv
,in
);
151 hexdump(stdout
,"Plaintext",plaintext
,pn
);
152 hexdump(stdout
,"Ciphertext",ciphertext
,cn
);
156 fprintf(stderr
,"Key length doesn't match, got %d expected %lu\n",kn
,
157 (unsigned long)c
->key_len
);
160 EVP_CIPHER_CTX_init(&ctx
);
163 if(!EVP_EncryptInit_ex(&ctx
,c
,NULL
,key
,iv
))
165 fprintf(stderr
,"EncryptInit failed\n");
166 ERR_print_errors_fp(stderr
);
169 EVP_CIPHER_CTX_set_padding(&ctx
,0);
171 if(!EVP_EncryptUpdate(&ctx
,out
,&outl
,plaintext
,pn
))
173 fprintf(stderr
,"Encrypt failed\n");
174 ERR_print_errors_fp(stderr
);
177 if(!EVP_EncryptFinal_ex(&ctx
,out
+outl
,&outl2
))
179 fprintf(stderr
,"EncryptFinal failed\n");
180 ERR_print_errors_fp(stderr
);
186 fprintf(stderr
,"Ciphertext length mismatch got %d expected %d\n",
191 if(memcmp(out
,ciphertext
,cn
))
193 fprintf(stderr
,"Ciphertext mismatch\n");
194 hexdump(stderr
,"Got",out
,cn
);
195 hexdump(stderr
,"Expected",ciphertext
,cn
);
202 if(!EVP_DecryptInit_ex(&ctx
,c
,NULL
,key
,iv
))
204 fprintf(stderr
,"DecryptInit failed\n");
205 ERR_print_errors_fp(stderr
);
208 EVP_CIPHER_CTX_set_padding(&ctx
,0);
210 if(!EVP_DecryptUpdate(&ctx
,out
,&outl
,ciphertext
,cn
))
212 fprintf(stderr
,"Decrypt failed\n");
213 ERR_print_errors_fp(stderr
);
216 if(!EVP_DecryptFinal_ex(&ctx
,out
+outl
,&outl2
))
218 fprintf(stderr
,"DecryptFinal failed\n");
219 ERR_print_errors_fp(stderr
);
225 fprintf(stderr
,"Plaintext length mismatch got %d expected %d\n",
230 if(memcmp(out
,plaintext
,pn
))
232 fprintf(stderr
,"Plaintext mismatch\n");
233 hexdump(stderr
,"Got",out
,pn
);
234 hexdump(stderr
,"Expected",plaintext
,pn
);
239 EVP_CIPHER_CTX_cleanup(&ctx
);
244 static int test_cipher(const char *cipher
,const unsigned char *key
,int kn
,
245 const unsigned char *iv
,int in
,
246 const unsigned char *plaintext
,int pn
,
247 const unsigned char *ciphertext
,int cn
,
252 c
=EVP_get_cipherbyname(cipher
);
256 test1(c
,key
,kn
,iv
,in
,plaintext
,pn
,ciphertext
,cn
,encdec
);
261 static int test_digest(const char *digest
,
262 const unsigned char *plaintext
,int pn
,
263 const unsigned char *ciphertext
, unsigned int cn
)
267 unsigned char md
[EVP_MAX_MD_SIZE
];
270 d
=EVP_get_digestbyname(digest
);
274 printf("Testing digest %s\n",EVP_MD_name(d
));
275 hexdump(stdout
,"Plaintext",plaintext
,pn
);
276 hexdump(stdout
,"Digest",ciphertext
,cn
);
278 EVP_MD_CTX_init(&ctx
);
279 if(!EVP_DigestInit_ex(&ctx
,d
, NULL
))
281 fprintf(stderr
,"DigestInit failed\n");
282 ERR_print_errors_fp(stderr
);
285 if(!EVP_DigestUpdate(&ctx
,plaintext
,pn
))
287 fprintf(stderr
,"DigestUpdate failed\n");
288 ERR_print_errors_fp(stderr
);
291 if(!EVP_DigestFinal_ex(&ctx
,md
,&mdn
))
293 fprintf(stderr
,"DigestFinal failed\n");
294 ERR_print_errors_fp(stderr
);
297 EVP_MD_CTX_cleanup(&ctx
);
301 fprintf(stderr
,"Digest length mismatch, got %d expected %d\n",mdn
,cn
);
305 if(memcmp(md
,ciphertext
,cn
))
307 fprintf(stderr
,"Digest mismatch\n");
308 hexdump(stderr
,"Got",md
,cn
);
309 hexdump(stderr
,"Expected",ciphertext
,cn
);
315 EVP_MD_CTX_cleanup(&ctx
);
320 int main(int argc
,char **argv
)
322 const char *szTestFile
;
327 fprintf(stderr
,"%s <test file>\n",argv
[0]);
330 CRYPTO_malloc_debug_init();
331 CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL
);
332 CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON
);
336 f
=fopen(szTestFile
,"r");
343 /* Load up the software EVP_CIPHER and EVP_MD definitions */
344 OpenSSL_add_all_ciphers();
345 OpenSSL_add_all_digests();
346 #ifndef OPENSSL_NO_ENGINE
347 /* Load all compiled-in ENGINEs */
348 ENGINE_load_builtin_engines();
353 #ifndef OPENSSL_NO_ENGINE
354 /* Register all available ENGINE implementations of ciphers and digests.
355 * This could perhaps be changed to "ENGINE_register_all_complete()"? */
356 ENGINE_register_all_ciphers();
357 ENGINE_register_all_digests();
358 /* If we add command-line options, this statement should be switchable.
359 * It'll prevent ENGINEs being ENGINE_init()ialised for cipher/digest use if
360 * they weren't already initialised. */
361 /* ENGINE_set_cipher_flags(ENGINE_CIPHER_FLAG_NOINIT); */
369 unsigned char *iv
,*key
,*plaintext
,*ciphertext
;
373 if(!fgets((char *)line
,sizeof line
,f
))
375 if(line
[0] == '#' || line
[0] == '\n')
378 cipher
=sstrsep(&p
,":");
381 plaintext
=ustrsep(&p
,":");
382 ciphertext
=ustrsep(&p
,":");
387 encdec
= atoi(sstrsep(&p
,"\n"));
393 pn
=convert(plaintext
);
394 cn
=convert(ciphertext
);
396 if(!test_cipher(cipher
,key
,kn
,iv
,in
,plaintext
,pn
,ciphertext
,cn
,encdec
)
397 && !test_digest(cipher
,plaintext
,pn
,ciphertext
,cn
))
399 #ifdef OPENSSL_NO_AES
400 if (strstr(cipher
, "AES") == cipher
)
402 fprintf(stdout
, "Cipher disabled, skipping %s\n", cipher
);
406 #ifdef OPENSSL_NO_DES
407 if (strstr(cipher
, "DES") == cipher
)
409 fprintf(stdout
, "Cipher disabled, skipping %s\n", cipher
);
413 #ifdef OPENSSL_NO_RC4
414 if (strstr(cipher
, "RC4") == cipher
)
416 fprintf(stdout
, "Cipher disabled, skipping %s\n", cipher
);
420 #ifdef OPENSSL_NO_CAMELLIA
421 if (strstr(cipher
, "CAMELLIA") == cipher
)
423 fprintf(stdout
, "Cipher disabled, skipping %s\n", cipher
);
427 #ifdef OPENSSL_NO_SEED
428 if (strstr(cipher
, "SEED") == cipher
)
430 fprintf(stdout
, "Cipher disabled, skipping %s\n", cipher
);
434 fprintf(stderr
,"Can't find %s\n",cipher
);
440 #ifndef OPENSSL_NO_ENGINE
444 CRYPTO_cleanup_all_ex_data();
445 ERR_remove_thread_state(NULL
);
447 CRYPTO_mem_leaks_fp(stderr
);