1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

Update to latest BearSSL (#8600)

Minor SSL bug fix included.
This commit is contained in:
Earle F. Philhower, III
2022-06-14 09:49:22 -07:00
committed by GitHub
parent 0e0ad1f645
commit 760a6bc6c7
5 changed files with 95 additions and 5 deletions

View File

@ -137,6 +137,10 @@
#include "bearssl_x509.h"
#include "bearssl_pem.h"
#ifdef __cplusplus
extern "C" {
#endif
/** \brief Type for a configuration option.
*
* A "configuration option" is a value that is selected when the BearSSL
@ -167,4 +171,13 @@ typedef struct {
*/
const br_config_option *br_get_config(void);
/* ======================================================================= */
/** \brief Version feature: support for time callback. */
#define BR_FEATURE_X509_TIME_CALLBACK 1
#ifdef __cplusplus
}
#endif
#endif