mirror of
https://github.com/waku-org/js.waku.guide.git
synced 2025-02-23 04:08:20 +00:00
779 B
779 B
title | date | weight |
---|---|---|
Cryptographic Libraries | 2021-12-09T14:00:00+01:00 | 50 |
Cryptographic Libraries
A note on the cryptographic libraries used as it is a not a straightforward affair.
Asymmetric encryption
Uses ecies-geth which in turns uses SubtleCrypto Web API (browser), secp256k1 (native binding for node) or elliptic (pure JS if none of the other libraries are available).
Symmetric encryption
Uses SubtleCrypto Web API (browser) or NodeJS' crypto module.