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>2014-08-15 01:07:45 +0400
committerAdam Langley <agl@google.com>2014-08-15 02:02:42 +0400
commitd4178fd9d85f246620b6f1a2158a1268d2d2d4a5 (patch)
tree7ee217ef4ab1febce493c322bbbf451c038cb238 /include/openssl/aead.h
parentb00eee193546f6d5c9669b102aaf707d5bc2a2f4 (diff)
Remove AES-GCM cipher indices.
Those ciphers go through EVP_AEAD now. Change-Id: Ia97af9960223724f041dc2c249def9e626fd03f8 Reviewed-on: https://boringssl-review.googlesource.com/1520 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/aead.h')
-rw-r--r--include/openssl/aead.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/openssl/aead.h b/include/openssl/aead.h
index eb2194a9..7e4682c5 100644
--- a/include/openssl/aead.h
+++ b/include/openssl/aead.h
@@ -92,10 +92,10 @@ extern "C" {
/* AEAD algorithms. */
-/* EVP_aes_128_gcm is AES-128 in Galois Counter Mode. */
+/* EVP_aead_aes_128_gcm is AES-128 in Galois Counter Mode. */
OPENSSL_EXPORT const EVP_AEAD *EVP_aead_aes_128_gcm(void);
-/* EVP_aes_256_gcm is AES-256 in Galois Counter Mode. */
+/* EVP_aead_aes_256_gcm is AES-256 in Galois Counter Mode. */
OPENSSL_EXPORT const EVP_AEAD *EVP_aead_aes_256_gcm(void);
/* EVP_aead_chacha20_poly1305 is an AEAD built from ChaCha20 and Poly1305. */