commit | 7487c5b2c86ebea66015c06b7fea5e64064e89d4 | [log] [tgz] |
---|---|---|
author | Simon Butcher <simonb@redtangent.net> | Sun Apr 29 00:24:51 2018 +0100 |
committer | Simon Butcher <simonb@redtangent.net> | Mon Jun 11 14:03:22 2018 +0100 |
tree | f2335230b82e4285b7caf70dc0f0b13b8f1653d5 | |
parent | 8c0fd1e881cf052c7a0f59c1bc167b97391034b4 [diff] [blame] |
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 ef47037..33c71f1 100644 --- a/library/cipher_wrap.c +++ b/library/cipher_wrap.c
@@ -1198,6 +1198,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