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-12-23 18:57:17 +0300
committerAdam Langley <agl@google.com>2015-01-14 23:55:58 +0300
commit044abb0aaa18012c65ea0e7c46988eff283ed200 (patch)
tree6c6a68bd7b85a127e9ca693684f9583388a89d2e /include/openssl/cipher.h
parent41ac979211a3cd237f51ffb577262b6eb2bfd129 (diff)
Implement SSLv3 ciphers with stateful AEADs.
This introduces another knob into SSL_AEAD_CTX to omit the version from the ad parameter. It also allows us to fold a few more SSL3_ENC_METHOD hooks together. Change-Id: I6540d410d4722f734093554fb434dab6e5217d4f Reviewed-on: https://boringssl-review.googlesource.com/2698 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/cipher.h')
-rw-r--r--include/openssl/cipher.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/openssl/cipher.h b/include/openssl/cipher.h
index 1b714e72..0dfd97b1 100644
--- a/include/openssl/cipher.h
+++ b/include/openssl/cipher.h
@@ -526,6 +526,10 @@ OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cbc(void);
#define CIPHER_F_aead_tls_open 124
#define CIPHER_F_aead_tls_seal 125
#define CIPHER_F_aead_tls_ensure_cipher_init 126
+#define CIPHER_F_aead_ssl3_open 127
+#define CIPHER_F_aead_ssl3_seal 128
+#define CIPHER_F_aead_ssl3_init 129
+#define CIPHER_F_aead_ssl3_ensure_cipher_init 130
#define CIPHER_R_WRAP_MODE_NOT_ALLOWED 100
#define CIPHER_R_AES_KEY_SETUP_FAILED 101
#define CIPHER_R_INPUT_NOT_INITIALIZED 102