Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-06-23 02:56:15 +0300
committerAdam Langley <agl@google.com>2015-06-23 02:59:40 +0300
commit50f54e2a5fccd716c875d0815ff5a36864dd7b83 (patch)
treea21ec4d1304b175765556c7a1185091032d1619a /include/openssl/aead.h
parente65886a5207f88b97561f7e13ce792443b2bf7e6 (diff)
AEADs don't go through ENGINE.
They'll probably stay that way too, so document it as being an ignored parameter. Change-Id: Iff385715f5413290a7186c38ea9ef2dd4fce9b38 Reviewed-on: https://boringssl-review.googlesource.com/5175 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/aead.h')
-rw-r--r--include/openssl/aead.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/openssl/aead.h b/include/openssl/aead.h
index dc453e34..d36cf95b 100644
--- a/include/openssl/aead.h
+++ b/include/openssl/aead.h
@@ -223,11 +223,11 @@ enum evp_aead_direction_t {
evp_aead_seal,
};
-/* EVP_AEAD_CTX_init initializes |ctx| for the given AEAD algorithm from |impl|.
- * The |impl| argument may be NULL to choose the default implementation.
- * Authentication tags may be truncated by passing a size as |tag_len|. A
- * |tag_len| of zero indicates the default tag length and this is defined as
- * EVP_AEAD_DEFAULT_TAG_LENGTH for readability.
+/* EVP_AEAD_CTX_init initializes |ctx| for the given AEAD algorithm. The |impl|
+ * argument is ignored and should be NULL. Authentication tags may be truncated
+ * by passing a size as |tag_len|. A |tag_len| of zero indicates the default
+ * tag length and this is defined as EVP_AEAD_DEFAULT_TAG_LENGTH for
+ * readability.
*
* Returns 1 on success. Otherwise returns 0 and pushes to the error stack. In
* the error case, you do not need to call |EVP_AEAD_CTX_cleanup|, but it's