-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now, Fortanix DSM can represent arbitrary OpenPGP Transferable Secret Keys. Such keys can come from other implementations such the local GnuPG keyring, etc. Because nothing is known about the input key, the corresponding structure of Sobjects has been enhanced to represent it in fair generality. More fields have been added as custom metadata (fingerprint of each subkeys, external creation timestamps, ECDH additional algorithms, etc). Consequently, next release (0.3.0) is not backwards compatible with previous versions. The input key is accepted for import under the following assumptions: - The primary key is always C or CS, - there is at least one Et or Er subkey, - if the primary key is C, then there is at least one S subkey, and - the given cipher suites and algorithms are supported by Fortanix DSM.
- Loading branch information
Showing
35 changed files
with
1,540 additions
and
197 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "openpgp-dsm" | ||
version = "0.2.1-beta" | ||
version = "0.3.0-beta" | ||
authors = ["zugzwang <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -14,6 +14,7 @@ hyper-native-tls = "0.3.0" | |
ipnetwork = "0.17" | ||
http = "0.2.4" | ||
log = "0.4.14" | ||
num = "0.4.0" | ||
rpassword = "5.0" | ||
spki = "0.4.0" | ||
sequoia-openpgp = { path = "../openpgp", default-features = false } | ||
|
@@ -23,7 +24,7 @@ serde = "1.0" | |
serde_derive = "1.0" | ||
serde_json = "1.0" | ||
uuid = "0.7.4" | ||
yasna = { version = "0.3.2", features = ["num-bigint", "bit-vec"] } | ||
yasna = { version = "0.5.0", features = ["num-bigint", "bit-vec"] } | ||
|
||
[features] | ||
default = ["sequoia-openpgp/default"] | ||
|
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
Oops, something went wrong.