diff options
author | Kenny Root <kroot@google.com> | 2015-05-08 13:38:31 -0700 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2015-05-08 13:38:33 -0700 |
commit | b3106a0cc1493bbe0505c0ec0ce3da4ca90a29ae (patch) | |
tree | f9254ef6a6fcf813c937b0c51db186a8f63f1ade /src | |
parent | cbe62cb9f697fcdea54dfa6d289c39a0c09007f3 (diff) | |
download | external_boringssl-b3106a0cc1493bbe0505c0ec0ce3da4ca90a29ae.zip external_boringssl-b3106a0cc1493bbe0505c0ec0ce3da4ca90a29ae.tar.gz external_boringssl-b3106a0cc1493bbe0505c0ec0ce3da4ca90a29ae.tar.bz2 |
Fix doc reference to EVP_AEAD_max_overhead
The documentation referred to the old name of EVP_AEAD_overhead.
Change-Id: Ifaaf1a703686935bba561a70ecace76f0dd0c290
Diffstat (limited to 'src')
-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. |