mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
Blowfish has default of 128-bit keysize in cipher layer
This commit is contained in:
parent
d5c2b542cc
commit
bfe671f2d5
1 changed files with 3 additions and 3 deletions
|
|
@ -663,7 +663,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,
|
||||
|
|
@ -674,7 +674,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,
|
||||
|
|
@ -686,7 +686,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…
Add table
Add a link
Reference in a new issue