diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-07-08 15:30:34 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-07-08 15:30:34 +0100 |
commit | 532dc0d4e79192a0c7fd1758322f6cae06959859 (patch) | |
tree | d8c553a7601c2688e04c74aed36979478d9f9f71 /tests/test_olm.cpp | |
parent | dceae043b30efb672acf41b21fbb335a6710b3c1 (diff) |
Change the JSON format for one time keys to include what algorithm they are for
Diffstat (limited to 'tests/test_olm.cpp')
-rw-r--r-- | tests/test_olm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_olm.cpp b/tests/test_olm.cpp index 7c3ec87..bedabf3 100644 --- a/tests/test_olm.cpp +++ b/tests/test_olm.cpp @@ -89,7 +89,7 @@ mock_random_a(a_rand, sizeof(a_rand)); assert_not_equals(std::size_t(-1), ::olm_create_outbound_session( a_session, a_account, b_id_keys + 88, 43, - b_ot_keys + 74, 43, + b_ot_keys + 22, 43, a_rand, sizeof(a_rand) )); @@ -193,7 +193,7 @@ mock_random_a(a_rand, sizeof(a_rand)); assert_not_equals(std::size_t(-1), ::olm_create_outbound_session( a_session, a_account, b_id_keys + 88, 43, - b_ot_keys + 74, 43, + b_ot_keys + 22, 43, a_rand, sizeof(a_rand) )); |