From e8c1f45bf86681495bd8dc800605e85e6f40dc78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 17 Aug 2008 14:10:15 +0000 Subject: [PATCH] add EVP_des_cbc git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23592 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hcrypto/evp.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/hcrypto/evp.h b/lib/hcrypto/evp.h index 156199f4e..c8498f741 100644 --- a/lib/hcrypto/evp.h +++ b/lib/hcrypto/evp.h @@ -78,6 +78,7 @@ #define EVP_hcrypto_aes_128_cts hc_EVP_hcrypto_aes_128_cts #define EVP_hcrypto_aes_192_cts hc_EVP_hcrypto_aes_192_cts #define EVP_hcrypto_aes_256_cts hc_EVP_hcrypto_aes_256_cts +#define EVP_des_cbc hc_EVP_des_cbc #define EVP_des_ede3_cbc hc_EVP_des_ede3_cbc #define EVP_enc_null hc_EVP_enc_null #define EVP_md2 hc_EVP_md2 @@ -210,6 +211,7 @@ const EVP_CIPHER * EVP_hcrypto_aes_256_cbc(void); const EVP_CIPHER * EVP_hcrypto_aes_128_cts(void); const EVP_CIPHER * EVP_hcrypto_aes_192_cts(void); const EVP_CIPHER * EVP_hcrypto_aes_256_cts(void); +const EVP_CIPHER * EVP_des_cbc(void); const EVP_CIPHER * EVP_des_ede3_cbc(void); const EVP_CIPHER * EVP_enc_null(void); const EVP_CIPHER * EVP_rc2_40_cbc(void);