diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-09-05 12:59:12 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-09-05 12:59:12 +0100 |
commit | 833ecd3c736cea71a693cd9dedec4f1bffa87000 (patch) | |
tree | 487626a261a69640e00baa7ff888a35e08b42fbe /include/olm/pickle.hh | |
parent | c09aa77c4a8dd27d98d2fe454fa1b589fee47977 (diff) |
Convert ed25519 pickling functions to C
... so that I can use them from the group session bits.
Diffstat (limited to 'include/olm/pickle.hh')
-rw-r--r-- | include/olm/pickle.hh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/include/olm/pickle.hh b/include/olm/pickle.hh index a09b8a1..4cf3f36 100644 --- a/include/olm/pickle.hh +++ b/include/olm/pickle.hh @@ -141,40 +141,6 @@ std::uint8_t const * unpickle( _olm_curve25519_key_pair & value ); - -std::size_t pickle_length( - const _olm_ed25519_public_key & value -); - - -std::uint8_t * pickle( - std::uint8_t * pos, - const _olm_ed25519_public_key & value -); - - -std::uint8_t const * unpickle( - std::uint8_t const * pos, std::uint8_t const * end, - _olm_ed25519_public_key & value -); - - -std::size_t pickle_length( - const _olm_ed25519_key_pair & value -); - - -std::uint8_t * pickle( - std::uint8_t * pos, - const _olm_ed25519_key_pair & value -); - - -std::uint8_t const * unpickle( - std::uint8_t const * pos, std::uint8_t const * end, - _olm_ed25519_key_pair & value -); - } // namespace olm |