In today's digital age, where major tech corporations routinely collect vast amounts of our personal information, Signal stands out as a breath of fresh air. Endorsed by notable people like Edward Snowden, Mark Zuckerberg, and Elon Musk, Signal prioritizes user privacy through robust end-to-end encryption.
Introduction
Generally, in an instant messaging app, users communicate with each other through a "trustworthy" server that takes the message and forwards it to the receiver. When doing this, we put a lot of faith in the server that it won't misuse our data. Malicious access to the server would mean the attacker can access all the messages.
The Signal Protocol, an open-source end-to-end encryption protocol, solves this problem with end-to-end encryption, where the decrypted version of the message is only stored on the client's devices to whom the conversation belongs.
Keys Generation on User Registration
Diffie Hellman Key Exchange Algorithm
We must first understand the Diffie Hellman (DH) Key Exchange Algorithm to understand how the Signal Protocol achieves end-to-end encryption. This algorithm allows two parties to establish a mutual secret without that secret being transmitted over the internet.
To better understand the algorithm, let's consider we have a public server and two parties, say, Alice and Bob.
We have two numbers stored on the public server: g
and n
with g
being a small prime number and n
being a very large number, often ranging from 2000 to 4000 bits.
Now, here's how the exchange happens:
- Generate Private Keys: Both Alice and Bob generate private keys; let's call them
a
andb
respectively, where 1 ≤ x ≤ n. - Generate Public Keys: Alice calculates her key as
(g ^ a) % n
, and Bob calculates his key as(g ^ b) % n
. These keys are then shared with each other through the public server. - Shared Secret: Now comes the fascinating part. Both Alice and Bob raise the received key with their own private number. Alice calculates
((g ^ b) % n) ^ a) % n
and Bob calculates((g ^ a) % n) ^ b) % n
.
Both of these calculations generate the same value, which Alice and Bob use to encrypt their messages without publicly sharing the key through the server.
Now, let us see its implementation in Typescript:
X3DH Key Agreement Protocol
Extended Triple Diffie Hellman or X3DH is a key agreement protocol for asynchronous messaging. While asynchronous messaging is also possible using Diffie Hellman as well, it was not designed for this purpose. It is used to create a shared secret between two parties.
Publishing PreKeys
When a user registers to the Signal, in this case, Bob, he sends a set of public keys to the Signal Server containing:
- Bob's identity key IKB
- Bob's signed prekey SPKB
- Bob's prekey signature Sig(IKB, Encode(SPKB))
- Bob's one time pre keys (OPKB1, OPKB2, OPKB3, ...)
Sending Message
For Alice to send a message to Bob, Alice contacts the server and fetches "prekey bundle" containing Bob's identity key
, signed prekey
, prekey signature
and one of Bob's one time prekey
.
Verifying prekey bundle: Alice first needs to verify that the keys belong to Bob. Since, Alice has access to IKB , she can verify that the SPKB is actually signed by Bob's identity key.
Generate Ephemeral Key: Ephemeral keys are newly generated keys for each new instance of the protocol and can only be used for that instance.
Calculate Diffie Hellman Key:
DH1 = DH(IKA, SPKB)
DH2 = DH(EKA, IKB)
DH3 = DH(EKA, SPKB)
DH4 = DH(EKA, OPKB)
KAB = KDF(DH1 || DH2 || DH3 || DH4)
where DH
means Diffie Hellman Algorithm and ||
means concatenation of the keys.
Now that Alice has generated the shared secret, she encrypts the message and sends an initial message containing:
- Alice's identity key
- Alice's ephemeral key
- Index of which of Bob's one time prekey was used
- Initial ciphertext
Deciphering Message:
After receiving the message from Alice, Bob performs the same Diffie Hellman calculations that Alice did. Bob then decrypts the initial ciphertext sent by Alice and checks if it is correct. Bob then decrypts the message using the shared key generated. Bob also deletes the OPKB used and DH keys generated in the process.
This way, Alice and Bob can establish initial communication securely.
Conclusion
To conclude, with its X3DK Algorithm, the Signal Protocol ensures that a secured secret key is generated through a public server.
You can read more about it on Signal's Documentation.
Thank you for reading this article. Please leave a comment below if you have any queries or suggestions.