aboutsummaryrefslogtreecommitdiff
path: root/include/olm/pickle.hh
diff options
context:
space:
mode:
authorRichard van der Hoff <github@rvanderhoff.org.uk>2016-09-06 11:08:04 +0100
committerGitHub <noreply@github.com>2016-09-06 11:08:04 +0100
commit7c84ce8098f58b28e9996f8644caafef8d32d308 (patch)
tree3ffbabe907b4a3f46d740d01114016add4539300 /include/olm/pickle.hh
parent8912d13b0b856e5eb3e43594260dd5da3ad6535c (diff)
parent833ecd3c736cea71a693cd9dedec4f1bffa87000 (diff)
Merge pull request #18 from matrix-org/rav/pickle_ed25519_in_c
Convert ed25519 pickling functions to C
Diffstat (limited to 'include/olm/pickle.hh')
-rw-r--r--include/olm/pickle.hh34
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