diff --git a/ChangeLog b/ChangeLog index 4567fdaca..291767b9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -29,6 +29,7 @@ Bugfix certificates * x509parse_crtpath() is now reentrant and uses more portable stat() * Fixed bignum.c and bn_mul.h to support Thumb2 and LLVM compiler + * Fixed values for 2-key Triple DES in cipher layer = Version 1.2.7 released 2013-04-13 Features diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c index ad829b731..943721274 100644 --- a/library/cipher_wrap.c +++ b/library/cipher_wrap.c @@ -535,8 +535,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 };