mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 15:45:31 +00:00
Fixed values for 2-key Triple DES in cipher layer
This commit is contained in:
parent
b495d3a2c7
commit
2be71faae4
|
@ -29,6 +29,7 @@ Bugfix
|
||||||
certificates
|
certificates
|
||||||
* x509parse_crtpath() is now reentrant and uses more portable stat()
|
* x509parse_crtpath() is now reentrant and uses more portable stat()
|
||||||
* Fixed bignum.c and bn_mul.h to support Thumb2 and LLVM compiler
|
* 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
|
= Version 1.2.7 released 2013-04-13
|
||||||
Features
|
Features
|
||||||
|
|
|
@ -535,8 +535,8 @@ const cipher_info_t des_ede_cbc_info = {
|
||||||
POLARSSL_MODE_CBC,
|
POLARSSL_MODE_CBC,
|
||||||
POLARSSL_KEY_LENGTH_DES_EDE,
|
POLARSSL_KEY_LENGTH_DES_EDE,
|
||||||
"DES-EDE-CBC",
|
"DES-EDE-CBC",
|
||||||
16,
|
8,
|
||||||
16,
|
8,
|
||||||
&des_ede_info
|
&des_ede_info
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue