-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update deps * Fix tests * Update rcgen * Update x509-parser
- Loading branch information
Showing
7 changed files
with
37 additions
and
28 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,6 +1,6 @@ | ||
[package] | ||
name = "sshcerts" | ||
version = "0.12.0" | ||
version = "0.12.1" | ||
authors = ["Mitchell Grenier <[email protected]>"] | ||
edition = "2021" | ||
license-file = "LICENSE" | ||
|
@@ -13,7 +13,13 @@ categories = ["authentication"] | |
[features] | ||
default = ["rsa-signing"] | ||
|
||
all = ["encrypted-keys", "rsa-signing", "x509-support", "yubikey-support", "fido-support"] | ||
all = [ | ||
"encrypted-keys", | ||
"rsa-signing", | ||
"x509-support", | ||
"yubikey-support", | ||
"fido-support", | ||
] | ||
|
||
encrypted-keys = ["aes", "bcrypt-pbkdf", "ctr"] | ||
|
||
|
@@ -28,29 +34,29 @@ yubikey-lite = ["x509-support"] | |
|
||
[dependencies] | ||
base64 = "0.13" | ||
ring = "0.16" | ||
zeroize = {version = "1", features = ["zeroize_derive"]} | ||
ring = "0.17" | ||
zeroize = { version = "1", features = ["zeroize_derive"] } | ||
|
||
# Dependencies for rsa-signing | ||
simple_asn1 = {version = "0.5", optional = true} | ||
num-bigint = {version = "0.4", optional = true} | ||
simple_asn1 = { version = "0.5", optional = true } | ||
num-bigint = { version = "0.4", optional = true } | ||
|
||
# Dependencies for yubikey-support | ||
yubikey = {version = "0.7", features = ["untested"], optional = true} | ||
lexical-core = {version = ">0.7.4", optional = true} | ||
rcgen = {version = "0.10", optional = true} | ||
x509 = {version = "0.2", optional = true} | ||
x509-parser = {version = "0.13", features = ["verify"], optional = true} | ||
der-parser = {version = "5", optional = true} | ||
yubikey = { version = "0.7", features = ["untested"], optional = true } | ||
lexical-core = { version = ">0.7.4", optional = true } | ||
rcgen = { version = "0.11", optional = true } | ||
x509 = { version = "0.2", optional = true } | ||
x509-parser = { version = "0.15", features = ["verify"], optional = true } | ||
der-parser = { version = "5", optional = true } | ||
|
||
# Dependencies for encrypted-keys | ||
aes = {version = "0.7", features = ["ctr"], optional = true} | ||
bcrypt-pbkdf = {version = "0.6", optional = true} | ||
ctr = {version = "0.8", optional = true} | ||
aes = { version = "0.7", features = ["ctr"], optional = true } | ||
bcrypt-pbkdf = { version = "0.6", optional = true } | ||
ctr = { version = "0.8", optional = true } | ||
|
||
# Dependencies for fido-support | ||
ctap-hid-fido2 = {version = "3", optional = true} | ||
minicbor = {version = "0.13", optional = true} | ||
ctap-hid-fido2 = { version = "3", optional = true } | ||
minicbor = { version = "0.13", optional = true } | ||
#ctap-hid-fido2 = {git = "https://github.com/gebogebogebo/ctap-hid-fido2", branch="master", optional = true} | ||
#ctap-hid-fido2 = {git = "https://github.com/obelisk/ctap-hid-fido2", branch="device_by_path", optional = true} | ||
#ctap-hid-fido2 = {path = "../ctap-hid-fido2", optional = true} | ||
|
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
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
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