tree: 87a64e1b03762eb64054c3be4aa7a25427a81884 [path history] [tgz]
  1. src/
  2. Cargo.lock
  3. Cargo.toml
  4. deny.toml
  5. README.md
rust/bssl-crypto/README.md

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:

mkdir build && cd build && cmake -G Ninja .. -DRUST_BINDINGS="$(gcc -dumpmachine)" && ninja

Then to run all tests:

cd rust/bssl-crypto && cargo clippy && cargo deny check && cargo test