From 0e34235644883ba8b6b827e0517bd5f55dc33fa9 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Mon, 24 Jun 2013 19:33:02 +0200
Subject: [PATCH] Fixed values for 2-key Triple DES in cipher layer (cherry
picked from commit 2be71faae4df9f97a700e7e813dad7b544492339)
---
library/cipher_wrap.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c
index 4d947f65b..030477f9c 100644
--- a/library/cipher_wrap.c
+++ b/library/cipher_wrap.c
@@ -556,8 +556,8 @@ const cipher_info_t des_ede_cbc_info = {
POLARSSL_MODE_CBC,
POLARSSL_KEY_LENGTH_DES_EDE,
"DES-EDE-CBC",
- 16,
- 16,
+ 8,
+ 8,
&des_ede_info
};