diff options
Diffstat (limited to 'include/olm/crypto.hh')
-rw-r--r-- | include/olm/crypto.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/olm/crypto.hh b/include/olm/crypto.hh index 7a05f8d..159bac7 100644 --- a/include/olm/crypto.hh +++ b/include/olm/crypto.hh @@ -17,6 +17,7 @@ #include <cstdint> #include <cstddef> +#include <string> namespace olm { @@ -26,6 +27,7 @@ static const std::size_t IV_LENGTH = 16; struct Curve25519PublicKey { std::uint8_t public_key[KEY_LENGTH]; + std::string to_string() const; }; |