mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 18:45:39 +01:00
Blowfish has default of 128-bit keysize in cipher layer
(cherry picked from commit bfe671f2d5
)
This commit is contained in:
parent
cecfd95aba
commit
8a4ec44c7c
@ -642,7 +642,7 @@ const cipher_base_t blowfish_info = {
|
||||
const cipher_info_t blowfish_cbc_info = {
|
||||
POLARSSL_CIPHER_BLOWFISH_CBC,
|
||||
POLARSSL_MODE_CBC,
|
||||
32,
|
||||
128,
|
||||
"BLOWFISH-CBC",
|
||||
8,
|
||||
8,
|
||||
@ -653,7 +653,7 @@ const cipher_info_t blowfish_cbc_info = {
|
||||
const cipher_info_t blowfish_cfb64_info = {
|
||||
POLARSSL_CIPHER_BLOWFISH_CFB64,
|
||||
POLARSSL_MODE_CFB,
|
||||
32,
|
||||
128,
|
||||
"BLOWFISH-CFB64",
|
||||
8,
|
||||
8,
|
||||
@ -665,7 +665,7 @@ const cipher_info_t blowfish_cfb64_info = {
|
||||
const cipher_info_t blowfish_ctr_info = {
|
||||
POLARSSL_CIPHER_BLOWFISH_CTR,
|
||||
POLARSSL_MODE_CTR,
|
||||
32,
|
||||
128,
|
||||
"BLOWFISH-CTR",
|
||||
8,
|
||||
8,
|
||||
|
Loading…
Reference in New Issue
Block a user