| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| src/ | 03-May-2024 | - | 1,238 | 773 | ||
| Cargo.toml | D | 03-May-2024 | 329 | 12 | 10 | |
| README.md | D | 03-May-2024 | 412 | 15 | 11 | |
| deny.toml | D | 03-May-2024 | 9.8 KiB | 216 | 204 | 
README.md
1bssl-crypto 2============ 3 4rust bindings to boringssl which wrap bssl-sys, a low level autogenerated binding 5 6Before using this crate, first generate the bssl-sys bindings by running this command from the root of the repo: 7``` 8cmake -G Ninja -B build -DRUST_BINDINGS="$(gcc -dumpmachine)" && ninja -C build 9``` 10 11Then to run all tests: 12``` 13cd rust/bssl-crypto && cargo clippy && cargo deny check && cargo test 14``` 15