Name Date Size #Lines LOC

..--

src/H25-Apr-2025-5,9633,714

Cargo.tomlH A D25-Apr-2025182 1411

README.mdH A D25-Apr-2025756 159

deny.tomlH A D25-Apr-20259.8 KiB216204

README.md

1bssl-crypto
2============
3
4Rust bindings to BoringSSL which wrap bssl-sys. Before using this crate, first [set up `bssl-sys`](../bssl-sys/README.md).
5
6Then to run all tests:
7```
8cd rust/bssl-crypto && cargo clippy && cargo deny check && cargo test
9```
10
11Unlike BoringSSL itself, this crate does not attempt to handle allocation failures. If an allocation fails, functions in this crate will panic.
12
13WARNING - 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.
14
15