Skip to content

Commit

Permalink
finally lands on block encrypting one-time keys, full round chacha20,…
Browse files Browse the repository at this point in the history
… and blake2 for hash
  • Loading branch information
seanwatters committed Jan 31, 2024
1 parent 8ec0e04 commit 4e4a4e9
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 138 deletions.
133 changes: 36 additions & 97 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 5 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,15 @@ license = "AGPL-3.0-only"
name = "ordinal_crypto"
readme = "README.md"
repository = "https://github.com/ordinarylabs/ordinal-crypto"
version = "0.4.2"
version = "0.5.0"

[dependencies]
aes = "0.8.3"
base64 = "0.21.2"
blake3 = "0.1.3"

chacha20 = "0.9.1"
chacha20poly1305 = { version = "0.10.1", features = ["reduced-round"] }

rand_core = "0.6.4"
blake2 = "0.10.6"
chacha20poly1305 = "0.10.1"
ed25519-dalek = { version = "2.0.0", features = ["rand_core"] }
rand_core = "0.6.4"
x25519-dalek = { version = "2.0.0", features = ["static_secrets"] }

[dev-dependencies]
Expand Down
Loading

0 comments on commit 4e4a4e9

Please sign in to comment.