add setCertificate, setPrivateKey, mbed headers

This commit is contained in:
brentru
2019-10-01 13:42:09 -04:00
parent e26d792713
commit ffbca9c1e3
2 changed files with 20 additions and 2 deletions

View File

@@ -264,6 +264,17 @@ int WiFiSSLClient::peek()
return _peek;
}
void WiFiSSLClient::setCertificate(const char *client_ca)
{
_cert = client_ca;
}
void WiFiSSLClient:: setPrivateKey(const char *private_key)
{
_private_key = private_key;
}
void WiFiSSLClient::flush()
{
}