Mirror of BoringSSL (grpc依赖) https://boringssl.googlesource.com/boringssl
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
David Benjamin d4b6eb542d Fix unwrap comment for CBB_init_fixed 4 months ago
..
src Fix unwrap comment for CBB_init_fixed 4 months ago
Cargo.toml Gate Rust support for ML-{KEM,DSA} on a crate feature. 4 months ago
README.md Document assumptions made by bssl-crypto's unboxed HMAC_CTX 1 year ago
deny.toml Update deny-toml to match new version format 8 months ago

README.md

bssl-crypto

Rust bindings to BoringSSL which wrap bssl-sys. Before using this crate, first set up bssl-sys.

Then to run all tests:

cd rust/bssl-crypto && cargo clippy && cargo deny check && cargo test

Unlike BoringSSL itself, this crate does not attempt to handle allocation failures. If an allocation fails, functions in this crate will panic.

WARNING - This crate is experimental and does NOT have a stable API. We expect to iterate on the API as it develops. If you use this crate you must be prepared to adapt your code to future changes as they occur. Additionally, this crate must be updated atomically with BoringSSL. The crate, internally, may depend on implementation details of the library.