mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-23 15:55:10 +01:00
Change cipher prototypes for GCM
This commit is contained in:
parent
20d6a17af9
commit
9241be7ac5
9 changed files with 94 additions and 39 deletions
|
|
@ -271,7 +271,7 @@ const cipher_info_t aes_128_gcm_info = {
|
|||
POLARSSL_MODE_GCM,
|
||||
128,
|
||||
"AES-128-GCM",
|
||||
16,
|
||||
0,
|
||||
16,
|
||||
&gcm_aes_info
|
||||
};
|
||||
|
|
@ -281,7 +281,7 @@ const cipher_info_t aes_256_gcm_info = {
|
|||
POLARSSL_MODE_GCM,
|
||||
256,
|
||||
"AES-256-GCM",
|
||||
16,
|
||||
0,
|
||||
16,
|
||||
&gcm_aes_info
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue