commit | a3f3f16d2e2a6a5e9ae0c063315760b4226a7899 | [log] [tgz] |
---|---|---|
author | Simon Butcher <simonb@redtangent.net> | Sun Apr 29 00:24:51 2018 +0100 |
committer | Simon Butcher <simonb@redtangent.net> | Sun Apr 29 11:40:01 2018 +0100 |
tree | 39733d65ecfa7cc5a8c80a3208875b31d945f6f7 | |
parent | 91e254cdaa7c340736eb5f7e4a11e0cc4efad146 [diff] |
Add missing OFB entry to null ciphersuite The OFB entry has been omitted from the the null cipher suite definition, null_base_info.
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c index f7d5737..901a2ca 100644 --- a/library/cipher_wrap.c +++ b/library/cipher_wrap.c
@@ -1399,6 +1399,9 @@ #if defined(MBEDTLS_CIPHER_MODE_CFB) NULL, #endif +#if defined(MBEDTLS_CIPHER_MODE_OFB) + NULL, +#endif #if defined(MBEDTLS_CIPHER_MODE_CTR) NULL, #endif