blob: 0d52053ae41adf9ec7f5d67aed84ddfa734f5878 [file] [log] [blame] [view]
bssl-crypto
============
rust bindings to boringssl which wrap bssl-sys, a low level autogenerated binding
Before using this crate, first generate the bssl-sys bindings by running this command from the root of the repo:
```
cmake -G Ninja -B build -DRUST_BINDINGS="$(gcc -dumpmachine)" && ninja -C build
```
Then to run all tests:
```
cd rust/bssl-crypto && cargo clippy && cargo deny check && cargo test
```