mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-22 05:46:41 +01:00
Add missing OFB entry to null ciphersuite
The OFB entry has been omitted from the the null cipher suite definition, null_base_info.
This commit is contained in:
parent
8c0fd1e881
commit
7487c5b2c8
1 changed files with 3 additions and 0 deletions
|
|
@ -1198,6 +1198,9 @@ static const mbedtls_cipher_base_t ccm_aria_info = {
|
||||||
#if defined(MBEDTLS_CIPHER_MODE_CFB)
|
#if defined(MBEDTLS_CIPHER_MODE_CFB)
|
||||||
NULL,
|
NULL,
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(MBEDTLS_CIPHER_MODE_OFB)
|
||||||
|
NULL,
|
||||||
|
#endif
|
||||||
#if defined(MBEDTLS_CIPHER_MODE_CTR)
|
#if defined(MBEDTLS_CIPHER_MODE_CTR)
|
||||||
NULL,
|
NULL,
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue