diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-07-08 16:00:08 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-07-08 16:04:18 +0100 |
commit | 0e988237f6fcb826afc42719adc335dcc7ca0e2e (patch) | |
tree | 004312c4b121b2278a5327847db28f0c20639323 /include/olm/account.hh | |
parent | 532dc0d4e79192a0c7fd1758322f6cae06959859 (diff) |
Don't pass a key id when creating a new outbound session
Diffstat (limited to 'include/olm/account.hh')
-rw-r--r-- | include/olm/account.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/olm/account.hh b/include/olm/account.hh index 552f069..cf886d1 100644 --- a/include/olm/account.hh +++ b/include/olm/account.hh @@ -112,13 +112,14 @@ struct Account { std::uint8_t * one_time_json, std::size_t one_time_json_length ); - /** Lookup a one_time key with the given key-id */ + /** Lookup a one time key with the given public key */ OneTimeKey const * lookup_key( Curve25519PublicKey const & public_key ); + /** Remove a one time key with the given public key */ std::size_t remove_key( - std::uint32_t id + Curve25519PublicKey const & public_key ); }; |