X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Fevp%2Fevp_test.c;h=fa3c9221bb16211be347c88a362566fce066456a;hp=df02ea6047861a72031074a933923d067b97b9aa;hb=997a54c9811e4b91fb064a11eb21dbc501e7ed85;hpb=b78e502104b4475a130b428d2de55af898e9afe1 diff --git a/crypto/evp/evp_test.c b/crypto/evp/evp_test.c index df02ea6047..fa3c9221bb 100644 --- a/crypto/evp/evp_test.c +++ b/crypto/evp/evp_test.c @@ -141,7 +141,7 @@ static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn, c->key_len); exit(5); } - + EVP_CIPHER_CTX_init(&ctx); if(!EVP_EncryptInit(&ctx,c,key,iv)) { fprintf(stderr,"EncryptInit failed\n"); @@ -268,9 +268,10 @@ static int test_digest(const char *digest, } if(!EVP_DigestFinal(&ctx,md,&mdn)) { - fprintf(stderr,"DigestUpdate failed\n"); + fprintf(stderr,"DigestFinal failed\n"); exit(101); } + EVP_MD_CTX_cleanup(&ctx); if(mdn != cn) { @@ -301,6 +302,9 @@ int main(int argc,char **argv) fprintf(stderr,"%s \n",argv[0]); exit(1); } + CRYPTO_malloc_debug_init(); + CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL); + CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON); szTestFile=argv[1]; @@ -347,6 +351,12 @@ int main(int argc,char **argv) } } + ENGINE_cleanup(); + EVP_cleanup(); + CRYPTO_cleanup_all_ex_data(); + ERR_remove_state(0); + ERR_free_strings(); + CRYPTO_mem_leaks_fp(stderr); return 0; }