diff --git a/README.md b/README.md index 9f948242..2abbe4f1 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,10 @@ This crate provides safe bindings for the Rust programming language and TLS adapters for [tokio](https://github.com/tokio-rs/tokio) and [hyper](https://github.com/hyperium/hyper) built on top of it. +It supports [FIPS-compatible builds of BoringSSL](https://boringssl.googlesource.com/boringssl/+/master/crypto/fipsmodule/FIPS.md), +as well as [Post-Quantum crypto](https://datatracker.ietf.org/doc/draft-ietf-tls-ecdhe-mlkem/) +and [Raw Public Key](https://docs.rs/boring/latest/boring/ssl/struct.SslRef.html#method.peer_pubkey) extensions. + ## Documentation - Boring API: - tokio TLS adapters: diff --git a/boring-sys/README.md b/boring-sys/README.md index fe4d7db2..6d1ebace 100644 --- a/boring-sys/README.md +++ b/boring-sys/README.md @@ -3,7 +3,9 @@ [BoringSSL](https://boringssl.googlesource.com/boringssl) is Google's fork of OpenSSL for Chrome/Chromium and Android. This crate builds the BoringSSL library (or optionally links a pre-built version) and generates FFI bindings for it. -It supports FIPS-compatible builds of BoringSSL, as well as Post-Quantum crypto and Raw Public Key features. +It supports [FIPS-compatible builds of BoringSSL](https://boringssl.googlesource.com/boringssl/+/master/crypto/fipsmodule/FIPS.md), +as well as [Post-Quantum crypto](https://datatracker.ietf.org/doc/draft-ietf-tls-ecdhe-mlkem/) +and [Raw Public Key](https://docs.rs/boring/latest/boring/ssl/struct.SslRef.html#method.peer_pubkey) extensions. To use BoringSSL from Rust, prefer the [higher-level safe API](https://docs.rs/boring).