• IP addresses are NOT logged in this forum so there's no point asking. Please note that this forum is full of homophobes, racists, lunatics, schizophrenics & absolute nut jobs with a smattering of geniuses, Chinese chauvinists, Moderate Muslims and last but not least a couple of "know-it-alls" constantly sprouting their dubious wisdom. If you believe that content generated by unsavory characters might cause you offense PLEASE LEAVE NOW! Sammyboy Admin and Staff are not responsible for your hurt feelings should you choose to read any of the content here.

    The OTHER forum is HERE so please stop asking.

Trying to Understand How WhatApp Uses Encryption

Darkode

Alfrescian
Loyal

Trying to Understand How WhatApp Uses Encryption


By Traven on July 17, 2016

encryption.jpg


By now all of the security-minded users have upgraded to the current version of WhatsApp, which supports end-to-end encryption.

End to end encryption, as the name suggests is a way of encrypting communication between two parties such that a third party, or even Whatsapp themselves cannot decrypt/read the communication.

For a while now, I have been trying to understand the algorithm from the white paper which Whatsapp has published and I apparently realized that explaining the algorithm in simple terms seems almost impossible.

The setup includes a handful of encryption keys. Like any other communication systems, the ‘signal’ protocol uses a combination of asymmetric and symmetric key cryptographic algorithms. The symmetric key algorithms ensure confidentiality and integrity whereas the asymmetric key cryptographic algorithms help in achieving the other security goals namely authentication and non-repudiation. In symmetric key cryptography a single key is used for encryption of the data as well as decryption. In asymmetric key cryptography there would be two separate keys. The data which is encrypted using the public key of a user can only be decrypted using the private key of that user and vice versa.

Whatsapp uses the Curve25519 based algorithm. The history of Curve25519 is worth noting as it was introduced after the concerns over allegations that certain parameters of the previously prevalent P-256 NIST standards have been manipulated by NSA for easier snooping. Elliptic Curve Diffie Hellman algorithm is a mathematical algorithm which helps two communicating entities to agree up on a shared secret without actually sending the actual keys to each other.

To understand the article and the method which they use, it is necessary to have a basic understanding of advanced cryptographic algorithms. So if you are not aware of ECDH, AES, SHA etc, this article may not entertain you. The following video by Robert Pierce beautifully explains the ECDH algorithm.


In the following flow chart all the key exchanges which occurs when a user installs whatsapp up until a message is sent to another user. Message key is a one time usable key and the process is repeated from the step where the new chain key is calculated.

Communicating Entities

ecdh-figure-1.png


Asymmetric Keys

ecdh-figure-2.png


Symmetric Keys/ Pseudo Random Numbers

ecdh-figure-3.png


Cryptographic Functions


ecdh-figure-4.png


Step By Step Process of Whatsapp End to End Encryption


ecdh-figure-5.png



 
Top