Skip to content

Commit b7974a0

Browse files
committed
Write explicitly parameters of ECDH function
1 parent 442658c commit b7974a0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

04-Protocol-Security.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ Length: 74 bytes
214214
1. initializes empty output buffer
215215
2. generates ephemeral keypair `e`, appends `e.public_key` to the buffer (32 bytes plaintext public key)
216216
3. calls `MixHash(e.public_key)`
217-
4. calls `MixKey(ECDH(e, re))`
217+
4. calls `MixKey(ECDH(e.private_key, re.public_key))`
218218
5. appends `EncryptAndHash(s.public_key)` (32 bytes encrypted public key, 16 bytes MAC)
219-
6. calls `MixKey(ECDH(s, re))`
219+
6. calls `MixKey(ECDH(s.private_key, re.public_key))`
220220
7. appends `EncryptAndHash(SIGNATURE_NOISE_MESSAGE)` to the buffer
221221
8. submits the buffer for sending to the initiator
222222
9. return pair of CipherState objects, the first for encrypting transport messages from initiator to responder, and the second for messages in the other direction:
@@ -247,9 +247,9 @@ Message length: 170 bytes
247247
1. receives NX-handshake part 2 message
248248
2. interprets first 32 bytes as `re.public_key`
249249
3. calls `MixHash(re.public_key)`
250-
4. calls `MixKey(ECDH(e, re))`
250+
4. calls `MixKey(ECDH(e.private_key, re.public_key))`
251251
5. decrypts next 48 bytes with `DecryptAndHash()` and stores the results as `rs.public_key` which is **server's static public key** (note that 32 bytes is the public key and 16 bytes is MAC)
252-
6. calls `MixKey(ECDH(e, rs)`
252+
6. calls `MixKey(ECDH(e.private_key, rs.public_key)`
253253
7. decrypts next 90 bytes with `DecryptAndHash()` and deserialize plaintext into `SIGNATURE_NOISE_MESSAGE` (74 bytes data + 16 bytes MAC)
254254
9. return pair of CipherState objects, the first for encrypting transport messages from initiator to responder, and the second for messages in the other direction:
255255
1. sets `temp_k1, temp_k2 = HKDF(ck, zerolen, 2)`

0 commit comments

Comments
 (0)