-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sgxencrypt: use alpha key, switch to hex encoding
- Loading branch information
Showing
3 changed files
with
8 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "sgxencrypt" | ||
description = "Cli tool for encrypting content for fleek network sgx enclaves" | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
edition = "2021" | ||
authors = ["ozwaldorf <[email protected]>"] | ||
license = "MIT" | ||
|
||
[dependencies] | ||
anyhow.workspace = true | ||
bpaf = { version = "0.9.12", features = ["derive", "dull-color"] } # cli parsing | ||
bs58 = "0.5.1" # encoding/decoding public keys | ||
hex = "0.4.3" # encoding/decoding public keys | ||
ecies = { version = "0.2.7", default-features = false, features = ["pure", "std"] } # encrypting content for the sgx enclave | ||
|
||
[[bin]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters