Removed SignedKey class

logging_enabled
Mark Haines 2015-07-07 08:56:18 +01:00
parent 14a0e4c7fd
commit 667e415c74
2 changed files with 0 additions and 33 deletions

View File

@ -30,11 +30,6 @@ struct LocalKey {
};
struct SignedKey : LocalKey {
std::uint8_t signature[64];
};
static std::size_t const MAX_ONE_TIME_KEYS = 100;
struct Account {

View File

@ -102,34 +102,6 @@ static std::uint8_t const * unpickle(
return pos;
}
static std::size_t pickle_length(
olm::SignedKey const & value
) {
return olm::pickle_length((olm::LocalKey const &) value) + 64;
}
static std::uint8_t * pickle(
std::uint8_t * pos,
olm::SignedKey const & value
) {
pos = olm::pickle(pos, (olm::LocalKey const &) value);
pos = olm::pickle_bytes(pos, value.signature, 64);
return pos;
}
static std::uint8_t const * unpickle(
std::uint8_t const * pos, std::uint8_t const * end,
olm::SignedKey & value
) {
pos = olm::unpickle(pos, end, (olm::LocalKey &) value);
pos = olm::unpickle_bytes(pos, end, value.signature, 64);
return pos;
}
} // namespace olm