summaryrefslogtreecommitdiffstats
path: root/test/sha512t.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-11-30 23:43:27 +0100
committerRichard Levitte <levitte@openssl.org>2015-12-07 17:39:23 +0100
commiteda34e4bef33a3b8f1e207bf04769007c70cbd1e (patch)
tree25124fceef881c491a3c175eadd02e021da49ac7 /test/sha512t.c
parent32fd54a9a36c172cf4e5fe4b7af2ae1f1ce1bc0a (diff)
Adapt the rest of the source to the removal of (EVP_MD_CTX|HMAC_CTX)_cleanup
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'test/sha512t.c')
-rw-r--r--test/sha512t.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sha512t.c b/test/sha512t.c
index 215a71fd0f..dff19aaa57 100644
--- a/test/sha512t.c
+++ b/test/sha512t.c
@@ -132,7 +132,7 @@ int main(int argc, char **argv)
"aaaaaaaa" "aaaaaaaa" "aaaaaaaa" "aaaaaaaa",
(1000000 - i) < 288 ? 1000000 - i : 288);
EVP_DigestFinal_ex(evp, md, NULL);
- EVP_MD_CTX_cleanup(evp);
+ EVP_MD_CTX_init(evp);
if (memcmp(md, app_c3, sizeof(app_c3))) {
fflush(stdout);