summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-10-27 15:44:15 -0400
committerRich Salz <rsalz@openssl.org>2015-10-27 16:07:56 -0400
commit6f5c03032080aa35e2ad5765b7243b8c75305611 (patch)
tree320307c5f0c74a235349bdf10fab0299fbef9622 /doc
parent0e56b4b42439d0842956a6730dec904ed70bbef7 (diff)
Remove HAMC_cleanup
Old API for use with OpenSSL-0.9.6. Remove it. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/hmac.pod7
1 files changed, 1 insertions, 6 deletions
diff --git a/doc/crypto/hmac.pod b/doc/crypto/hmac.pod
index 372a0f403e..88f5abcdb4 100644
--- a/doc/crypto/hmac.pod
+++ b/doc/crypto/hmac.pod
@@ -2,8 +2,7 @@
=head1 NAME
-HMAC, HMAC_CTX_init, HMAC_Init, HMAC_Init_ex, HMAC_Update, HMAC_Final, HMAC_CTX_cleanup,
-HMAC_cleanup - HMAC message authentication code
+HMAC, HMAC_CTX_init, HMAC_Init, HMAC_Init_ex, HMAC_Update, HMAC_Final, HMAC_CTX_cleanup - HMAC message authentication code
=head1 SYNOPSIS
@@ -23,7 +22,6 @@ HMAC_cleanup - HMAC message authentication code
int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len);
void HMAC_CTX_cleanup(HMAC_CTX *ctx);
- void HMAC_cleanup(HMAC_CTX *ctx);
=head1 DESCRIPTION
@@ -49,9 +47,6 @@ HMAC_CTX_cleanup() erases the key and other data from the B<HMAC_CTX>
and releases any associated resources. It must be called when an
B<HMAC_CTX> is no longer required.
-HMAC_cleanup() is an alias for HMAC_CTX_cleanup() included for back
-compatibility with 0.9.6b, it is deprecated.
-
The following functions may be used if the message is not completely
stored in memory: