diff options
author | Kenny Root <kroot@google.com> | 2015-05-12 01:20:13 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-05-12 01:20:13 +0000 |
commit | fb1d49c298c27f05368a544f87eb9c1cd48a0c23 (patch) | |
tree | f9254ef6a6fcf813c937b0c51db186a8f63f1ade | |
parent | 9861ddca64ed7a82b9ddbd3b4a6c526674ee550a (diff) | |
parent | b3106a0cc1493bbe0505c0ec0ce3da4ca90a29ae (diff) | |
download | external_boringssl-fb1d49c298c27f05368a544f87eb9c1cd48a0c23.zip external_boringssl-fb1d49c298c27f05368a544f87eb9c1cd48a0c23.tar.gz external_boringssl-fb1d49c298c27f05368a544f87eb9c1cd48a0c23.tar.bz2 |
am b3106a0c: Fix doc reference to EVP_AEAD_max_overhead
* commit 'b3106a0cc1493bbe0505c0ec0ce3da4ca90a29ae':
Fix doc reference to EVP_AEAD_max_overhead
-rw-r--r-- | src/include/openssl/aead.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/openssl/aead.h b/src/include/openssl/aead.h index 6fd8116..61cf3cd 100644 --- a/src/include/openssl/aead.h +++ b/src/include/openssl/aead.h @@ -227,8 +227,8 @@ OPENSSL_EXPORT void EVP_AEAD_CTX_cleanup(EVP_AEAD_CTX *ctx); * * At most |max_out_len| bytes are written to |out| and, in order to ensure * success, |max_out_len| should be |in_len| plus the result of - * |EVP_AEAD_overhead|. On successful return, |*out_len| is set to the actual - * number of bytes written. + * |EVP_AEAD_max_overhead|. On successful return, |*out_len| is set to the + * actual number of bytes written. * * The length of |nonce|, |nonce_len|, must be equal to the result of * |EVP_AEAD_nonce_length| for this AEAD. |