From 8f93215b1c134b563cb4e54b91ea51e66aa6ad6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Dvo=C5=99=C3=A1k?= Date: Wed, 11 Sep 2024 14:09:26 +0200 Subject: [PATCH] Fix typo --- docs/End-To-End-Encryption.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/End-To-End-Encryption.md b/docs/End-To-End-Encryption.md index 31d90de6..8f87f329 100644 --- a/docs/End-To-End-Encryption.md +++ b/docs/End-To-End-Encryption.md @@ -61,7 +61,7 @@ Note that the `APPLICATION_SECRET` constant is in Base64 form, so we need to rei ECIES in activation scope has the following configuration of parameters: -- `KEY_ENC_PUB` is a [temporary key](./Temporary-Encryption-Keys.md) with given `TEMP_KEY_ID` identifier fetched from the server associated with a specific application version and activation, and signed with `KEY_SERVER_PUBLIC` (the key which is unique for each activation, to prove it was intended for the activations cope). +- `KEY_ENC_PUB` is a [temporary key](./Temporary-Encryption-Keys.md) with given `TEMP_KEY_ID` identifier fetched from the server associated with a specific application version and activation, and signed with `KEY_SERVER_PRIVATE` (the key which is unique for each activation, to prove it was intended for the activations cope). - `SHARED_INFO_1` is a pre-shared constant and is different for each endpoint (see [Pre-shared constants](#pre-shared-constants)) - `SHARED_INFO_2_BASE` is calculated from `APPLICATION_SECRET` and `KEY_TRANSPORT`: ```java