Skip to content

Commit 1397fb9

Browse files
mishraditisaghul
authored andcommitted
docs(e2ee): fix typos in encryption documentation
1 parent 2341ad2 commit 1397fb9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/e2ee.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
This document describes some of the high-level concepts and outlines the design.
88
Please refer to the source code for details.
99

10-
This library implements End-to-End Encryiption (E2EE) on supported endpopints (currently just browsers with support
10+
This library implements End-to-End Encryption (E2EE) on supported endpoints (currently just browsers with support
1111
for [insertable streams](https://github.com/w3c/webrtc-insertable-streams)).
1212

1313
This implementation follows the model outlined in [SFrame](https://tools.ietf.org/html/draft-omara-sframe-00) with
@@ -27,7 +27,7 @@ then sent to every other participant over the E2EE Olm channel.
2727
### Key ratcheting
2828

2929
Each participant ratchets their key when another participant joins. The new resulting key is not distributed since
30-
every participant can derive it by ratchetting themselves.
30+
every participant can derive it by ratcheting themselves.
3131

3232
Unlike described in [SFrame 4.3.5.1](https://tools.ietf.org/html/draft-omara-sframe-00#section-4.3.5.1)
3333
we attempt to ratchet the key forward when we do not find a valid authentication tag. Note that we only update
@@ -39,7 +39,7 @@ the set of keys when we find a valid signature which avoids a denial of service
3939

4040
We are using a variant of [SFrame](https://tools.ietf.org/html/draft-omara-sframe-00)
4141
that uses a trailer instead of a header. We call it JFrame.
42-
`
42+
4343
These transformations use AES-GCM (with a 128 bit key; we could have used
4444
256 bits but since the keys are short-lived decided against it) and the
4545
webcrypto API:

0 commit comments

Comments
 (0)