Fixed values for 2-key Triple DES in cipher layer

This commit is contained in:
Paul Bakker 2013-06-18 16:33:27 +02:00
parent b495d3a2c7
commit 2be71faae4
2 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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
};