From 9d51583772f7b2bbdadea7a2d1647238d31685af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Tue, 2 Jun 2015 10:00:04 +0100 Subject: [PATCH] Fix cipher identifier in des_ede3_info --- library/cipher_wrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c index 59d77df45..18f832eea 100644 --- a/library/cipher_wrap.c +++ b/library/cipher_wrap.c @@ -1023,7 +1023,7 @@ static const mbedtls_cipher_info_t des_ede_cbc_info = { #endif /* MBEDTLS_CIPHER_MODE_CBC */ static const mbedtls_cipher_base_t des_ede3_info = { - MBEDTLS_CIPHER_ID_DES, + MBEDTLS_CIPHER_ID_3DES, des3_crypt_ecb_wrap, #if defined(MBEDTLS_CIPHER_MODE_CBC) des3_crypt_cbc_wrap,