js.waku.guide/content/docs/crypto_libraries.md
Jakub Sokołowski 89334e6efd replace mdBook with Hugo for site generation
An attempt to get multi-language support with a simple site generator: https://gohugo.io/

Research issue: https://github.com/vacp2p/docs.dappconnect.dev/issues/7
Theme: https://themes.gohugo.io/themes/hugo-book/

I've dropped the Waku specs part for simplicity of the PR, you can re-add it later yourself @D4nte .

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2021-12-10 16:39:21 +01:00

779 B

title date weight
Cryptographic Libraries 2021-12-09T14:00:00+01:00 5

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.