-
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.
Upgrade to use rustls 0.22.0-alpha.4 (#12)
* build: upgrade to use rustls 0.22.0-alpha.4 * feat: add signer impl - Add crate `rustls-mbedtls-provider-utils` - Add signer impl * feat: add SignatureVerificationAlgorithm * fix: fix tests * test: update test code to fit with mbedtls * fix implementation * fix clippy * test: add more unit tests * test: add more unit tests * ci: turn of CARGO_INCREMENTAL Turn off CARGO_INCREMENTAL to ensure cache & test coverage works correctly. * style: fmt * build: update ws default-members Add rustls-mbedtls-provider-utils to default-members * docs: fix rustdoc * refactor: better prefer order Update `RSA_SIGNATURE_SCHEME_PREFER_LIST` to have a better order.
- Loading branch information
Showing
26 changed files
with
1,391 additions
and
346 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,7 @@ on: | |
env: | ||
CARGO_TERM_COLOR: always | ||
CARGO_NET_RETRY: 10 | ||
CARGO_INCREMENTAL: 0 | ||
|
||
jobs: | ||
build: | ||
|
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 |
---|---|---|
|
@@ -11,3 +11,4 @@ admin/rustfmt | |
**/._.DS_Store | ||
/.idea | ||
/default.profraw | ||
.cargo/ |
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,4 +1,9 @@ | ||
[workspace] | ||
members = ["examples","rustls-mbedcrypto-provider", "rustls-mbedpki-provider"] | ||
default-members = ["rustls-mbedcrypto-provider", "rustls-mbedpki-provider"] | ||
members = [ | ||
"examples", | ||
"rustls-mbedcrypto-provider", | ||
"rustls-mbedpki-provider", | ||
"rustls-mbedtls-provider-utils", | ||
] | ||
default-members = ["rustls-mbedcrypto-provider", "rustls-mbedpki-provider", "rustls-mbedtls-provider-utils"] | ||
resolver = "2" |
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
Oops, something went wrong.