Skip to content
Snippets Groups Projects
Commit 09384b4d authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

spell ephemeral correctly...

parent bcb89bcc
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ struct Ratchet {
/** The sender chain is used to send messages. Each time a new ephemeral
* key is received from the remote server we generate a new sender chain
* with a new empheral key when we next send a message. */
* with a new ephemeral key when we next send a message. */
List<SenderChain, 1> sender_chain;
/** The receiver chain is used to decrypt received messages. We store the
......
......@@ -595,7 +595,7 @@ std::size_t olm::Ratchet::decrypt(
if (!chain) {
/* They have started using a new ephemeral ratchet key.
* We need to derive a new set of chain keys.
* We can discard our previous empheral ratchet key.
* We can discard our previous ephemeral ratchet key.
* We will generate a new key when we send the next message. */
chain = receiver_chains.insert();
......
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