diff options
Diffstat (limited to 'tests/test_ratchet.cpp')
-rw-r--r-- | tests/test_ratchet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ratchet.cpp b/tests/test_ratchet.cpp index b2db8e7..cbb3c52 100644 --- a/tests/test_ratchet.cpp +++ b/tests/test_ratchet.cpp @@ -34,7 +34,7 @@ olm::CipherAesSha256 cipher( std::uint8_t random_bytes[] = "0123456789ABDEF0123456789ABCDEF"; olm::Curve25519KeyPair alice_key; -olm::generate_key(random_bytes, alice_key); +olm::curve25519_generate_key(random_bytes, alice_key); std::uint8_t shared_secret[] = "A secret"; |