• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..22-Aug-2025-

src/22-Aug-2025-

Cargo.lock A D22-Aug-2025250 1512

Cargo.toml A D22-Aug-2025379 1815

README.md A D22-Aug-2025770 159

deny.toml A D22-Aug-20251.3 KiB2826

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