summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReda Chouk <reda@wolfssl.com>2024-09-05 14:51:32 +0200
committerDaniel McCarney <daniel@binaryparadox.net>2024-09-05 14:10:32 +0000
commit696a1efe2bb9a64e740e522fff5b8b002ed45bf1 (patch)
tree570b83bcd8482bc6e2b1801866a0e26928ffa1df
parentf05b0cc69f6f558514765ba4e597bd282020f1f7 (diff)
added links to rustls-wolfcrypt-provider in the third-party crypto providers section
added link in lib.rs too Fix CI by removing whitespace
-rw-r--r--README.md3
-rw-r--r--rustls/src/lib.rs3
2 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index 1ddeb26d..1a7f590c 100644
--- a/README.md
+++ b/README.md
@@ -97,6 +97,7 @@ cryptography.
from [`RustCrypto`] for cryptography.
* [`rustls-post-quantum`]: an experimental provider that adds support for post-quantum
key exchange to the default aws-lc-rs provider.
+* [`rustls-wolfcrypt-provider`] - a work-in-progress provider that uses [`wolfCrypt`] for cryptography.
[`rustls-mbedtls-provider`]: https://github.com/fortanix/rustls-mbedtls-provider
[`mbedtls`]: https://github.com/Mbed-TLS/mbedtls
@@ -105,6 +106,8 @@ key exchange to the default aws-lc-rs provider.
[`rustls-rustcrypto`]: https://github.com/RustCrypto/rustls-rustcrypto
[`RustCrypto`]: https://github.com/RustCrypto
[`rustls-post-quantum`]: https://crates.io/crates/rustls-post-quantum
+[`rustls-wolfcrypt-provider`]: https://github.com/wolfSSL/rustls-wolfcrypt-provider
+[`wolfCrypt`]: https://www.wolfssl.com/products/wolfcrypt
#### Custom provider
diff --git a/rustls/src/lib.rs b/rustls/src/lib.rs
index 61d8d019..47eaafa7 100644
--- a/rustls/src/lib.rs
+++ b/rustls/src/lib.rs
@@ -63,6 +63,7 @@
//! from [`RustCrypto`] for cryptography.
//! * [`rustls-post-quantum`]: an experimental provider that adds support for post-quantum
//! key exchange to the default aws-lc-rs provider.
+//! * [`rustls-wolfcrypt-provider`] - a work-in-progress provider that uses [`wolfCrypt`] for cryptography.
//!
//! [`rustls-mbedtls-provider`]: https://github.com/fortanix/rustls-mbedtls-provider
//! [`mbedtls`]: https://github.com/Mbed-TLS/mbedtls
@@ -71,6 +72,8 @@
//! [`rustls-rustcrypto`]: https://github.com/RustCrypto/rustls-rustcrypto
//! [`RustCrypto`]: https://github.com/RustCrypto
//! [`rustls-post-quantum`]: https://crates.io/crates/rustls-post-quantum
+//! [`rustls-wolfcrypt-provider`]: https://github.com/wolfSSL/rustls-wolfcrypt-provider
+//! [`wolfCrypt`]: https://www.wolfssl.com/products/wolfcrypt
//!
//! #### Custom provider
//!