Initial commit
This commit is contained in:
commit
c7072159fd
6 changed files with 1284 additions and 0 deletions
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
name = "signal-decrypt-backup-wasm"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
crate-type = ["cdylib", "rlib"]
|
||||
|
||||
[dependencies]
|
||||
wasm-bindgen = "0.2"
|
||||
js-sys = "0.3"
|
||||
web-sys = { version = "0.3", features = ["console"] }
|
||||
aes = "0.8"
|
||||
ctr = "0.9"
|
||||
hkdf = "0.12"
|
||||
hmac = "0.12"
|
||||
sha2 = "0.10"
|
||||
base64 = "0.21"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
prost = "0.11"
|
||||
prost-types = "0.11"
|
||||
serde_bytes = "0.11.15"
|
||||
|
||||
[build-dependencies]
|
||||
prost-build = "0.11"
|
Loading…
Add table
Add a link
Reference in a new issue