matterbridge/vendor/github.com/status-im/status-go/protocol/encryption
Michal Iskierko 6d31343205 feat: Waku v2 bridge
Issue #12610
2024-02-22 17:07:59 +01:00
..
migrations feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
multidevice feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
publisher feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
sharedsecret feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
encryptor.go feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
helpers.go feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
persistence.go feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
protocol_message.pb.go feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
protocol_message.proto feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
protocol.go feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
README.md feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00
x3dh.go feat: Waku v2 bridge 2024-02-22 17:07:59 +01:00

protocol/encryption package

Hash ratchet encryption

encryptor.GenerateHashRatchetKey() generates a hash ratchet key and stores it in in the DB. There, 2 new tables are created: hash_ratchet_encryption and hash_ratchet_encryption_cache. Each hash ratchet key is uniquely identified by the (groupId, keyId) pair, where keyId is derived from a clock value.

protocol.BuildHashRatchetKeyExchangeMessage builds an 1-on-1 message containing the hash ratchet key, given it's ID.

protocol.BuildHashRatchetMessage builds a hash ratchet message with arbitrary payload, given groupId. It will use the latest hash ratchet key available. encryptor.encryptWithHR encrypts the payload using Hash Ratchet algorithms. Intermediate hashes are stored in hash_ratchet_encryption_cache table.

protocol.HandleMessage uses encryptor.decryptWithHR fn for decryption.