Name Date Size #Lines LOC

..--

.github/H25-Apr-2025-84

cmake/H25-Apr-2025-10592

crypto/H25-Apr-2025-641,354525,979

decrepit/H25-Apr-2025-5,3463,805

gen/H25-Apr-2025-273,175248,898

include/openssl/H25-Apr-2025-38,42113,901

rust/H25-Apr-2025-6,6474,266

ssl/H25-Apr-2025-93,85570,516

third_party/H25-Apr-2025-693,149674,804

tool/H25-Apr-2025-5,8814,671

util/H25-Apr-2025-32,01426,668

.bazelignoreH A D25-Apr-202542 32

.bazelrcH A D25-Apr-20252 KiB4537

.clang-formatH A D25-Apr-20252.6 KiB8180

.gitignoreH A D25-Apr-2025663 3935

API-CONVENTIONS.mdH A D25-Apr-202514.8 KiB315242

BREAKING-CHANGES.mdH A D25-Apr-20258.8 KiB8947

BUILD.bazelH A D25-Apr-20254.5 KiB184169

BUILDING.mdH A D25-Apr-20259.4 KiB222161

CMakeLists.txtH A D25-Apr-202528.8 KiB784681

CONTRIBUTING.mdH A D25-Apr-20252.7 KiB5342

FUZZING.mdH A D25-Apr-20254.3 KiB8150

INCORPORATING.mdH A D25-Apr-20256.1 KiB130102

LICENSEH A D25-Apr-202512.2 KiB253222

MODULE.bazelH A D25-Apr-20251.5 KiB3329

MODULE.bazel.lockH A D25-Apr-2025173.7 KiB2,3332,332

PORTING.mdH A D25-Apr-202516.3 KiB307228

PrivacyInfo.xcprivacyH A D25-Apr-2025567 2214

README.mdH A D25-Apr-20252.6 KiB4535

SANDBOXING.mdH A D25-Apr-20256.6 KiB141107

STYLE.mdH A D25-Apr-20258.4 KiB234164

build.jsonH A D25-Apr-202540 KiB1,0031,002

codereview.settingsH A D25-Apr-2025170 54

go.modH A D25-Apr-2025211 1410

go.sumH A D25-Apr-2025620 98

README.md

1# BoringSSL
2
3BoringSSL is a fork of OpenSSL that is designed to meet Google's needs.
4
5Although BoringSSL is an open source project, it is not intended for general
6use, as OpenSSL is. We don't recommend that third parties depend upon it. Doing
7so is likely to be frustrating because there are no guarantees of API or ABI
8stability.
9
10Programs ship their own copies of BoringSSL when they use it and we update
11everything as needed when deciding to make API changes. This allows us to
12mostly avoid compromises in the name of compatibility. It works for us, but it
13may not work for you.
14
15BoringSSL arose because Google used OpenSSL for many years in various ways and,
16over time, built up a large number of patches that were maintained while
17tracking upstream OpenSSL. As Google's product portfolio became more complex,
18more copies of OpenSSL sprung up and the effort involved in maintaining all
19these patches in multiple places was growing steadily.
20
21Currently BoringSSL is the SSL library in Chrome/Chromium, Android (but it's
22not part of the NDK) and a number of other apps/programs.
23
24Project links:
25
26  * [API documentation](https://commondatastorage.googleapis.com/chromium-boringssl-docs/headers.html)
27  * [Bug tracker](https://issues.chromium.org/issues?q=status:open%20componentid:1590116%2B&s=created_time:desc)
28    * [Filing new issues](https://issues.chromium.org/issues/new?component=1590116&template=2003314)
29    * [Filing new security issues](https://issues.chromium.org/issues/new?component=1590116&template=2003205)
30  * [CI](https://ci.chromium.org/p/boringssl/g/main/console)
31  * [Code review](https://boringssl-review.googlesource.com)
32
33There are other files in this directory which might be helpful:
34
35  * [PORTING.md](./PORTING.md): how to port OpenSSL-using code to BoringSSL.
36  * [BUILDING.md](./BUILDING.md): how to build BoringSSL
37  * [INCORPORATING.md](./INCORPORATING.md): how to incorporate BoringSSL into a project.
38  * [API-CONVENTIONS.md](./API-CONVENTIONS.md): general API conventions for BoringSSL consumers and developers.
39  * [STYLE.md](./STYLE.md): rules and guidelines for coding style.
40  * include/openssl: public headers with API documentation in comments. Also [available online](https://commondatastorage.googleapis.com/chromium-boringssl-docs/headers.html).
41  * [FUZZING.md](./FUZZING.md): information about fuzzing BoringSSL.
42  * [CONTRIBUTING.md](./CONTRIBUTING.md): how to contribute to BoringSSL.
43  * [BREAKING-CHANGES.md](./BREAKING-CHANGES.md): notes on potentially-breaking changes.
44  * [SANDBOXING.md](./SANDBOXING.md): notes on using BoringSSL in a sandboxed environment.
45