• Home
Name Date Size #Lines LOC

..--

src/03-May-2024-1,238773

Cargo.tomlD03-May-2024329 1210

README.mdD03-May-2024412 1511

deny.tomlD03-May-20249.8 KiB216204

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