NameDateSize

..11-Jun-20184 KiB

.clang-format11-Jun-2018178

.github/11-Jun-20184 KiB

.gitignore11-Jun-2018447

API-CONVENTIONS.md11-Jun-20187.6 KiB

BUILDING.md11-Jun-20186.8 KiB

CMakeLists.txt11-Jun-201813.2 KiB

codereview.settings11-Jun-2018166

CONTRIBUTING.md11-Jun-20182.5 KiB

crypto/11-Jun-20184 KiB

decrepit/11-Jun-20184 KiB

fipstools/11-Jun-20184 KiB

FUZZING.md11-Jun-20184.6 KiB

include/11-Jun-20184 KiB

INCORPORATING.md11-Jun-20185 KiB

infra/11-Jun-20184 KiB

LICENSE11-Jun-20189.1 KiB

PORTING.md11-Jun-201812 KiB

README.md11-Jun-20181.8 KiB

sources.cmake11-Jun-20182.3 KiB

ssl/11-Jun-20184 KiB

STYLE.md11-Jun-20187.8 KiB

third_party/11-Jun-20184 KiB

tool/11-Jun-20184 KiB

util/11-Jun-20184 KiB

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