• Home
Name Date Size #Lines LOC

..--

src/06-Sep-2024-4,1792,749

Cargo.tomlD06-Sep-2024182 1411

README.mdD06-Sep-2024612 159

deny.tomlD06-Sep-20249.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.
14
15