boring icon indicating copy to clipboard operation
boring copied to clipboard

BoringSSL bindings for the Rust programming language.

Results 54 boring issues
Sort by recently updated
recently updated
newest added
trafficstars

I am using ([a fork of](https://github.com/4JX/boring)) boring in a project of mine and I'm having some trouble with making it use the correct certificates 1. On my Windows machine I...

the commit msg indicates it's removed in: https://github.com/cloudflare/boring/commit/a6f5beeb333342a5e84a3f36ee2f8b80a6f8d602 is it meaningful to bring it back?

Currently, the README says the following: > By default, the crate statically links with the latest BoringSSL master branch. After reviewing the code, I think this is a bit misleading....

Right now, the [`EVP_AEAD` Interface](https://commondatastorage.googleapis.com/chromium-boringssl-docs/aead.h.html) is the only way to access modern primitives like AES-GCM-SIV and XChaCha20-Poly1305. Exposing it would make it easier for folks to use these primitives in...

https://github.com/cloudflare/boring/blob/1507689c5b49fa732cbf54f59e998116fab79287/boring-sys/build.rs#L169-L177 needs to instead be ```rust let toolchain_file = if cfg!(feature = "fips") { format!("{}/util/32-bit-toolchain.cmake", BORING_SSL_DIR) } else { format!("{}/src/util/32-bit-toolchain.cmake", BORING_SSL_DIR) }; boringssl_cmake .define("CMAKE_TOOLCHAIN_FILE", pwd.join(toolchain_file).as_os_str()); ```

we missing this code branch from the build script: https://github.com/cloudflare/quiche/blob/5b3ab16751e8e0e51d364a49601a0040abbe1b4d/quiche/src/build.rs#L131-L142

bug
good first issue

This is a demonstration of issue #62. I'm not really sure what do you want to do with these tests. Right now they are broken and it's not trivial to...

Right now GitHub Actions do not do what they should do. Instead of testing for specified targets, they build tests for the host OS and run them there. When proper...