Skip to content
Snippets Groups Projects
Commit 2f2e0340 authored by Mark Haines's avatar Mark Haines
Browse files

const on right hand side

parent a0e9065f
No related branches found
No related tags found
No related merge requests found
......@@ -274,7 +274,7 @@ std::size_t axolotl::Session::encrypt(
std::size_t padded = axolotl::aes_encrypt_cbc_length(plaintext_length);
std::uint32_t counter = keys.index;
const Curve25519PublicKey &ratchet_key = sender_chain[0].ratchet_key;
Curve25519PublicKey const & ratchet_key = sender_chain[0].ratchet_key;
axolotl::MessageWriter writer(axolotl::encode_message(
PROTOCOL_VERSION, counter, KEY_LENGTH, padded, output
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment