X-Git-Url: http://wagner.pp.ru/gitweb/?a=blobdiff_plain;ds=sidebyside;f=gost_eng.c;h=e9751e029a61b016aa314176939efeb652142d74;hb=e06b2112a84129f3a97968ad8551ee3d9588af63;hp=bb314d3bc0e33264df1d8a33cbeccf09ae07208b;hpb=83cf06d40ed3d4dc1d97c8dc6bb19e295e31e2ac;p=openssl-gost%2Fengine.git diff --git a/gost_eng.c b/gost_eng.c index bb314d3..e9751e0 100644 --- a/gost_eng.c +++ b/gost_eng.c @@ -100,9 +100,12 @@ static int gost_engine_destroy(ENGINE *e) digest_gost_destroy(); digest_gost2012_256_destroy(); digest_gost2012_512_destroy(); + imit_gost_cpa_destroy(); imit_gost_cp_12_destroy(); + cipher_gost_destroy(); + gost_param_free(); pmeth_GostR3410_2001 = NULL; @@ -206,10 +209,10 @@ static int bind_gost(ENGINE *e, const char *id) || !ENGINE_register_digests(e) || !ENGINE_register_pkey_meths(e) /* These two actually should go in LIST_ADD command */ - || !EVP_add_cipher(&cipher_gost) - || !EVP_add_cipher(&cipher_gost_cbc) - || !EVP_add_cipher(&cipher_gost_cpacnt) - || !EVP_add_cipher(&cipher_gost_cpcnt_12) + || !EVP_add_cipher(cipher_gost()) + || !EVP_add_cipher(cipher_gost_cbc()) + || !EVP_add_cipher(cipher_gost_cpacnt()) + || !EVP_add_cipher(cipher_gost_cpcnt_12()) || !EVP_add_digest(digest_gost()) || !EVP_add_digest(digest_gost2012_512()) || !EVP_add_digest(digest_gost2012_256()) @@ -263,13 +266,13 @@ static int gost_ciphers(ENGINE *e, const EVP_CIPHER **cipher, } if (nid == NID_id_Gost28147_89) { - *cipher = &cipher_gost; + *cipher = cipher_gost(); } else if (nid == NID_gost89_cnt) { - *cipher = &cipher_gost_cpacnt; + *cipher = cipher_gost_cpacnt(); } else if (nid == NID_gost89_cnt_12) { - *cipher = &cipher_gost_cpcnt_12; + *cipher = cipher_gost_cpcnt_12(); } else if (nid == NID_gost89_cbc) { - *cipher = &cipher_gost_cbc; + *cipher = cipher_gost_cbc(); } else { ok = 0; *cipher = NULL;