summaryrefslogtreecommitdiff
path: root/src/ssl.hh
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@opera.com>2023-07-18 14:11:04 +0200
committerJoel Klinghed <the_jk@opera.com>2023-07-18 14:11:04 +0200
commit2a8a19c674dd843828771c04f25e906e3c58f845 (patch)
tree24cb36814d4ac7b4bde8e75253234270fc6ddff8 /src/ssl.hh
parent467db2e9086bdffb9adfcb2143684471c061f206 (diff)
Support mbedtls 3.x
Diffstat (limited to 'src/ssl.hh')
-rw-r--r--src/ssl.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ssl.hh b/src/ssl.hh
index 1cd6aea..c4465e1 100644
--- a/src/ssl.hh
+++ b/src/ssl.hh
@@ -34,7 +34,8 @@ class SSLKey {
public:
virtual ~SSLKey() {}
static bool generate(Logger* logger, SSLEntropy* entropy, std::string* key);
- static SSLKey* load(Logger* logger, std::string const& data);
+ static SSLKey* load(Logger* logger, std::string const& data,
+ SSLEntropy* entropy);
protected:
SSLKey() {}