aboutsummaryrefslogtreecommitdiff
path: root/include/axolotl
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2015-02-25 17:33:00 +0000
committerMark Haines <mjark@negativecurvature.net>2015-02-25 17:33:00 +0000
commita4e5bf977297f3142e51c3fe94b0ded8af12224a (patch)
tree94946011cfa7abf3ec5fdaa5a69e7e1822c6d4af /include/axolotl
parent5f9cc65589e71a47e0a06b2dd6fb39540eaaf9e5 (diff)
Don't bother passing through the mac_length, the caller already knows it since they supplied it
Diffstat (limited to 'include/axolotl')
-rw-r--r--include/axolotl/list.hh4
-rw-r--r--include/axolotl/message.hh1
2 files changed, 2 insertions, 3 deletions
diff --git a/include/axolotl/list.hh b/include/axolotl/list.hh
index ae41baa..a3c3d01 100644
--- a/include/axolotl/list.hh
+++ b/include/axolotl/list.hh
@@ -18,12 +18,12 @@ public:
/**
* Is the list empty?
*/
- bool empty() { return _end == _data; }
+ bool empty() const { return _end == _data; }
/**
* The number of items in the list.
*/
- std::size_t size() { return _end - _data; }
+ std::size_t size() const { return _end - _data; }
T & operator[](std::size_t index) { return _data[index]; }
diff --git a/include/axolotl/message.hh b/include/axolotl/message.hh
index 85579cf..ac4b3e0 100644
--- a/include/axolotl/message.hh
+++ b/include/axolotl/message.hh
@@ -29,7 +29,6 @@ struct MessageReader {
std::uint32_t counter;
std::size_t ratchet_key_length;
std::size_t ciphertext_length;
- std::size_t mac_length;
std::uint8_t const * ratchet_key;
std::uint8_t const * ciphertext;
std::uint8_t const * mac;