Skip to content

Commit

Permalink
WIP dalek
Browse files Browse the repository at this point in the history
  • Loading branch information
mkj committed Jun 11, 2023
1 parent ae32823 commit 60cc41f
Show file tree
Hide file tree
Showing 4 changed files with 186 additions and 29 deletions.
8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,12 @@ cipher = { version = "0.4", features = ["zeroize"] }
subtle = { version = "2.4", default-features = false }
# ed25519/x25519
# fork allows hashing by parts (sign/verify from sshwire), and zeroize
salty = { version = "0.2", git = "https://github.com/mkj/salty", branch = "sunset" }
# salty = { version = "0.2", git = "https://github.com/mkj/salty", branch = "sunset" }
salty = { version = "0.2", path = "/home/matt/3rd/rs/salty" }
ed25519-dalek = { version = "1", default-features = false }
x25519-dalek = { version = "1", default-features = false }
curve25519-dalek = { version = "3", default-features = false, features = [ "u32_backend"]}

rsa = { version = "0.8", default-features = false, optional = true, features = ["sha2"] }
# TODO: getrandom feature is a workaround for missing ssh-key dependency with rsa. fixed in pending 0.6
ssh-key = { version = "0.5", default-features = false, optional = true, features = ["getrandom"] }
Expand Down Expand Up @@ -84,3 +89,4 @@ simplelog = { version = "0.12", features = ["test"] }


[patch.crates-io]
curve25519-dalek = { path = "/home/matt/3rd/rs/crypto/curve25519-dalek" }
2 changes: 1 addition & 1 deletion embassy/demos/picow/Cargo.lock

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

188 changes: 170 additions & 18 deletions embassy/demos/std/Cargo.lock

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

Loading

0 comments on commit 60cc41f

Please sign in to comment.