You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any help regarding usage of these functions is appreciated:
** void setCertificate(const uint8_t* cert_data, size_t size);
void setPrivateKey(const uint8_t* pk, size_t size);
Any help regarding usage of these functions is appreciated:
** void setCertificate(const uint8_t* cert_data, size_t size);
void setPrivateKey(const uint8_t* pk, size_t size);
bool loadCertificate(Stream& stream, size_t size);
bool loadPrivateKey(Stream& stream, size_t size);
template
bool loadCertificate(TFile& file) {
return loadCertificate(file, file.size());
}
template
bool loadPrivateKey(TFile& file) {
return loadPrivateKey(file, file.size());
}**
I am using mqtt with ssl, so i have to provide ca.crt to esp any idea?
The text was updated successfully, but these errors were encountered: