mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
parent
52f4cc8de0
commit
d85ff6efc4
@ -37,13 +37,13 @@ class CertStore {
|
|||||||
~CertStore();
|
~CertStore();
|
||||||
|
|
||||||
// Set the file interface instances, do preprocessing
|
// Set the file interface instances, do preprocessing
|
||||||
int initCertStore(FS &fs, const char *indexFileName, const char *dataFileName);
|
int initCertStore(fs::FS &fs, const char *indexFileName, const char *dataFileName);
|
||||||
|
|
||||||
// Installs the cert store into the X509 decoder (normally via static function callbacks)
|
// Installs the cert store into the X509 decoder (normally via static function callbacks)
|
||||||
void installCertStore(br_x509_minimal_context *ctx);
|
void installCertStore(br_x509_minimal_context *ctx);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
FS *_fs = nullptr;
|
fs::FS *_fs = nullptr;
|
||||||
char *_indexName = nullptr;
|
char *_indexName = nullptr;
|
||||||
char *_dataName = nullptr;
|
char *_dataName = nullptr;
|
||||||
X509List *_x509 = nullptr;
|
X509List *_x509 = nullptr;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user