• Home
Name Date Size #Lines LOC

..--

.github/03-May-2024-84

crypto/03-May-2024-565,828466,619

decrepit/03-May-2024-4,4653,041

fipstools/03-May-2024-3,1452,351

include/openssl/03-May-2024-28,06812,503

infra/config/03-May-2024-8068

ssl/03-May-2024-72,14154,454

third_party/android-cmake/03-May-2024-2,3482,089

tool/03-May-2024-3,9693,079

util/03-May-2024-13,54811,664

.clang-formatD03-May-2024178 86

.gitignoreD03-May-2024447 2523

API-CONVENTIONS.mdD03-May-20247.6 KiB185135

BUILDING.mdD03-May-20246.8 KiB169121

CMakeLists.txtD03-May-202413.2 KiB333295

CONTRIBUTING.mdD03-May-20242.5 KiB5039

FUZZING.mdD03-May-20244.6 KiB8754

INCORPORATING.mdD03-May-20245 KiB10985

LICENSED03-May-20249.1 KiB193178

PORTING.mdD03-May-202412 KiB261198

README.mdD03-May-20241.8 KiB3426

STYLE.mdD03-May-20247.8 KiB221155

codereview.settingsD03-May-2024166 54

sources.cmakeD03-May-20242.3 KiB5350

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
24There are other files in this directory which might be helpful:
25
26  * [PORTING.md](/PORTING.md): how to port OpenSSL-using code to BoringSSL.
27  * [BUILDING.md](/BUILDING.md): how to build BoringSSL
28  * [INCORPORATING.md](/INCORPORATING.md): how to incorporate BoringSSL into a project.
29  * [API-CONVENTIONS.md](/API-CONVENTIONS.md): general API conventions for BoringSSL consumers and developers.
30  * [STYLE.md](/STYLE.md): rules and guidelines for coding style.
31  * include/openssl: public headers with API documentation in comments. Also [available online](https://commondatastorage.googleapis.com/chromium-boringssl-docs/headers.html).
32  * [FUZZING.md](/FUZZING.md): information about fuzzing BoringSSL.
33  * [CONTRIBUTING.md](/CONTRIBUTING.md): how to contribute to BoringSSL.
34