mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-25 02:01:04 +00:00
Fixed values for 2-key Triple DES in cipher layer
(cherry picked from commit 2be71faae4
)
Conflicts:
ChangeLog
This commit is contained in:
parent
a465d758aa
commit
90f242bf2e
|
@ -9,6 +9,7 @@ Bugfix
|
|||
* ssl_parse_certificate() now calls x509parse_crt_der() directly
|
||||
instead of the x509parse_crt() wrapper that can also parse PEM
|
||||
certificates
|
||||
* Fixed values for 2-key Triple DES in cipher layer
|
||||
|
||||
= Version 1.1.6 released on 2013-03-11
|
||||
Bugfix
|
||||
|
|
|
@ -522,8 +522,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
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue