File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -205,6 +205,11 @@ void BearSSLClient::setEccSign(br_ecdsa_sign sign)
205
205
_ecSign = sign;
206
206
}
207
207
208
+ void BearSSLClient::setEccCert (br_x509_certificate cert)
209
+ {
210
+ _ecCert = cert;
211
+ }
212
+
208
213
void BearSSLClient::setEccSlot (int ecc508KeySlot, const byte cert[], int certLength)
209
214
{
210
215
// HACK: put the key slot info. in the br_ec_private_key structure
Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ class BearSSLClient : public Client {
74
74
void setEccVrfy (br_ecdsa_vrfy vrfy);
75
75
void setEccSign (br_ecdsa_sign sign);
76
76
77
+ void setEccCert (br_x509_certificate cert);
78
+
77
79
void setEccSlot (int ecc508KeySlot, const byte cert[], int certLength);
78
80
void setEccSlot (int ecc508KeySlot, const char cert[]);
79
81
You can’t perform that action at this time.
0 commit comments