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:
authorMatt Braithwaite <mab@google.com>2015-08-20 00:25:32 +0300
committerAdam Langley <agl@google.com>2015-08-21 00:33:21 +0300
commitd82a7b24be3bc4e14817d383b71b62000bb469cf (patch)
tree49e75b64a2a8391fe4f776c705c3d3da5ffa1909 /include/openssl/cipher.h
parent8c413a2d94fa720fae6a7d9c939e33978f3ed25b (diff)
Re-add |EVP_des_ede|, which is ECB.
(I couldn't find an authoritative source of test data, including in OpenSSL's source, so I used OpenSSL's implementation to produce the test ciphertext.) This benefits globalplatform. Change-Id: Ifb79e77afb7efed1c329126a1a459bbf7ce6ca00 Reviewed-on: https://boringssl-review.googlesource.com/5725 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/cipher.h')
-rw-r--r--include/openssl/cipher.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/openssl/cipher.h b/include/openssl/cipher.h
index 7c38a204..a4e79ddd 100644
--- a/include/openssl/cipher.h
+++ b/include/openssl/cipher.h
@@ -76,6 +76,7 @@ OPENSSL_EXPORT const EVP_CIPHER *EVP_rc4(void);
OPENSSL_EXPORT const EVP_CIPHER *EVP_des_cbc(void);
OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ecb(void);
+OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede(void);
OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede_cbc(void);
OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_cbc(void);