git ssb

3+

cel / ssb-server-wiki



Commit 2829cb2ec49031f57245bab3640615d0ab2ae172

sign secret from previous message to prove it was actually decrypted.

Dominic Tarr committed on 5/13/2015, 3:47:27 AM
Parent: 0c69a8991b921cc2cd0398d63b6037e27e68c7ff

Files changed

a-secure-secure-channel.mdchanged
a-secure-secure-channel.mdView
@@ -104,9 +104,10 @@
104104 box[Bob->Alice]([
105105 //containing a new key
106106 Barbara.public_key
107107 //with proof this message was just created by Bob!
108- sign(hash(hello + Barbara.public_key), Bob.private_key)
108+ //note: also signing Aaron.public_key proves to alice that bob did actually decrypt the hello packet.
109+ sign(hash(hello + Barbara.public_key + Aaron.public_key), Bob.private_key)
109110 ])
110111 )
111112 ```
112113

Built with git-ssb-web