summaryrefslogtreecommitdiffstats
path: root/src/include/openssl/cipher.h
diff options
context:
space:
mode:
authorMatt Braithwaite <mab@google.com>2016-10-07 12:56:34 -0700
committerJessica Wagantall <jwagantall@cyngn.com>2016-11-09 15:59:23 -0800
commit9e0e59956ace6f92ef6f6c4fef881d283a3e08ce (patch)
tree49fb9e4bcec94ac1d5c16790988fd7ac1e1906e0 /src/include/openssl/cipher.h
parent31371924c6b23675d7ddbed4472f4a296195e782 (diff)
downloadexternal_boringssl-9e0e59956ace6f92ef6f6c4fef881d283a3e08ce.zip
external_boringssl-9e0e59956ace6f92ef6f6c4fef881d283a3e08ce.tar.gz
external_boringssl-9e0e59956ace6f92ef6f6c4fef881d283a3e08ce.tar.bz2
Re-add |EVP_des_ede_cbc|.stable/cm-13.0-ZNH0E
Note that while |DES_ede2_cbc_encrypt| exists, I didn't use it: I think it's easier to see what's happening this way. (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. (cherry picked from commit 8c413a2d94fa720fae6a7d9c939e33978f3ed25b) CYNGNOS-3303 Bug: 31081987 Change-Id: I7e17ca0b69067d7b3f4bc213b4616eb269882ae0
Diffstat (limited to 'src/include/openssl/cipher.h')
-rw-r--r--src/include/openssl/cipher.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/openssl/cipher.h b/src/include/openssl/cipher.h
index 7f5fe04..7d2d608 100644
--- a/src/include/openssl/cipher.h
+++ b/src/include/openssl/cipher.h
@@ -75,6 +75,7 @@ extern "C" {
OPENSSL_EXPORT const EVP_CIPHER *EVP_rc4(void);
OPENSSL_EXPORT const EVP_CIPHER *EVP_des_cbc(void);
+OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede_cbc(void);
OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_cbc(void);
OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ecb(void);