Added wasm support
This commit is contained in:
parent
9edf5d1dd7
commit
1820a83759
2 changed files with 8 additions and 3 deletions
|
@ -18,7 +18,8 @@ maintenance = { status = "actively-developed" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
p256 = {version = "0.9", features = ["zeroize", "ecdh", "arithmetic", "pem", "jwk"]}
|
p256 = {version = "0.9", features = ["zeroize", "ecdh", "arithmetic", "pem", "jwk"]}
|
||||||
rand_core = {version = "0.6", features = ["getrandom"]}
|
rand_core = {version = "0.6"}
|
||||||
|
getrandom = {version = "0.2.3"}
|
||||||
hkdf = "0.11.0"
|
hkdf = "0.11.0"
|
||||||
hmac = "0.11.0"
|
hmac = "0.11.0"
|
||||||
aes-gcm-siv = {version = "0.10.0"}
|
aes-gcm-siv = {version = "0.10.0"}
|
||||||
|
@ -43,4 +44,5 @@ opt-level = 3
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["sha2"]
|
default = ["sha2"]
|
||||||
ring = ["ring-compat/digest"]
|
ring = ["ring-compat/digest"]
|
||||||
|
wasm = ["getrandom/js"]
|
|
@ -118,9 +118,12 @@ assert_eq!(im_ratchet, bob_ratchet)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
Currently the crate only supports one feature: ring. If feature is enabled the crate switches
|
The crate supports a feature for better performance: ring. If feature is enabled the crate switches
|
||||||
to ring-compat and uses ring as backend for Sha512 Hashing. May result in slightly better performance.
|
to ring-compat and uses ring as backend for Sha512 Hashing. May result in slightly better performance.
|
||||||
|
|
||||||
|
### WASM
|
||||||
|
|
||||||
|
For WASM support enable the feature `wasm`.
|
||||||
|
|
||||||
TODO:
|
TODO:
|
||||||
- [x] Standard Double Ratchet
|
- [x] Standard Double Ratchet
|
||||||
|
|
Loading…
Reference in a new issue