commit | 3a2b47ab5be5c75edacb8cdc246dc2dc8fb2c0cd | [log] [tgz] |
---|---|---|
author | Adam Langley <agl@google.com> | Tue Jan 24 13:59:42 2017 -0800 |
committer | Adam Langley <agl@google.com> | Fri Jan 27 16:21:05 2017 +0000 |
tree | a0bd3f5e6a01774b32736f93c9cd5b4fd2153c79 | |
parent | 2fe6e227fbb0d42b65058d74cbfa3b19b0963e1f [diff] |
Don't use |X509| objects in |CERT|, by default. This change converts the |CERT| struct to holding certificates as binary blobs, rather than in parsed form. The members for holding the parsed form are still there, however, but are only used as a cache for the event that someone asks us for a non-owning pointer to the parsed leaf or chain. Next steps: * Move more functions in to ssl_x509.c * Create an X509_OPS struct of function pointers that will hang off the |SSL_METHOD| to abstract out the current calls to crypto/x509 operations. BUG=chromium:671420 Change-Id: Ifa05d88c49a987fd561b349705c9c48f106ec868 Reviewed-on: https://boringssl-review.googlesource.com/13280 Reviewed-by: Adam Langley <agl@google.com>
BoringSSL is a fork of OpenSSL that is designed to meet Google's needs.
Although BoringSSL is an open source project, it is not intended for general use, as OpenSSL is. We don't recommend that third parties depend upon it. Doing so is likely to be frustrating because there are no guarantees of API or ABI stability.
Programs ship their own copies of BoringSSL when they use it and we update everything as needed when deciding to make API changes. This allows us to mostly avoid compromises in the name of compatibility. It works for us, but it may not work for you.
BoringSSL arose because Google used OpenSSL for many years in various ways and, over time, built up a large number of patches that were maintained while tracking upstream OpenSSL. As Google's product portfolio became more complex, more copies of OpenSSL sprung up and the effort involved in maintaining all these patches in multiple places was growing steadily.
Currently BoringSSL is the SSL library in Chrome/Chromium, Android (but it's not part of the NDK) and a number of other apps/programs.
There are other files in this directory which might be helpful: