diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2017-08-28 17:43:44 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2017-08-28 17:43:44 +0000 |
commit | c13aa9221f111000ae8d40e2f317d3c7ab342d9a (patch) | |
tree | 259c24c087c707320e766ec745e88291ccde2354 | |
parent | 64efb3ce7a04743c83e490e63c04dcb73354396b (diff) |
Remove documentation for EVP_aead_chacha20_poly1305_ietf() - this was
removed/renamed a long time back.
-rw-r--r-- | lib/libcrypto/man/EVP_AEAD_CTX_init.3 | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/lib/libcrypto/man/EVP_AEAD_CTX_init.3 b/lib/libcrypto/man/EVP_AEAD_CTX_init.3 index ff24d3bf101..debcc773c46 100644 --- a/lib/libcrypto/man/EVP_AEAD_CTX_init.3 +++ b/lib/libcrypto/man/EVP_AEAD_CTX_init.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: EVP_AEAD_CTX_init.3,v 1.5 2016/11/21 22:19:15 jmc Exp $ +.\" $OpenBSD: EVP_AEAD_CTX_init.3,v 1.6 2017/08/28 17:43:43 jsing Exp $ .\" .\" Copyright (c) 2014, Google Inc. .\" Parts of the text were written by Adam Langley and David Benjamin. @@ -16,7 +16,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: November 21 2016 $ +.Dd $Mdocdate: August 28 2017 $ .Dt EVP_AEAD_CTX_INIT 3 .Os .Sh NAME @@ -30,8 +30,7 @@ .Nm EVP_AEAD_nonce_length , .Nm EVP_aead_aes_128_gcm , .Nm EVP_aead_aes_256_gcm , -.Nm EVP_aead_chacha20_poly1305 , -.Nm EVP_aead_chacha20_poly1305_ietf +.Nm EVP_aead_chacha20_poly1305 .Nd authenticated encryption with additional data .Sh SYNOPSIS .In openssl/evp.h @@ -102,10 +101,6 @@ .Fo EVP_aead_chacha20_poly1305 .Fa void .Fc -.Ft const EVP_AEAD * -.Fo EVP_aead_chacha20_poly1305_ietf -.Fa void -.Fc .Sh DESCRIPTION AEAD (Authenticated Encryption with Additional Data) couples confidentiality and integrity in a single primitive. @@ -224,11 +219,6 @@ AES-128 in Galois Counter Mode. AES-256 in Galois Counter Mode. .It Fn EVP_aead_chacha20_poly1305 ChaCha20 with a Poly1305 authenticator. -.It Fn EVP_aead_chacha20_poly1305_ietf -ChaCha20 with a Poly1305 authenticator for IETF Protocols. -The IETF standardised variant of the AEAD is incompatible with the -original version. -It uses a constant salt that is prepended to the nonce. .El .Pp Where possible the |