aboutsummaryrefslogtreecommitdiff
path: root/src/ratchet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ratchet.cpp')
-rw-r--r--src/ratchet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ratchet.cpp b/src/ratchet.cpp
index 72c6e82..d2903bb 100644
--- a/src/ratchet.cpp
+++ b/src/ratchet.cpp
@@ -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