commit | 45573cc04d6cc3352082b6a523e2ad1bfd909d94 | [log] [tgz] |
---|---|---|
author | Rob Sloan <varomodt@google.com> | Wed Dec 07 20:53:22 2016 -0800 |
committer | CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org> | Fri Jan 06 18:20:09 2017 +0000 |
tree | 552493bf3ab4fee22e1b86bd95097afb420617a5 | |
parent | 08b65f4e31f7eb63bad0e903e9f191bcc699eaca [diff] |
Add Little-endian BIGNUM conversions Towards an eventual goal of opaquifying BoringSSL structs, we want our consumers -- in this case, Android's libcore -- to not directly manipulate BigNums; and it would be convenient for them if we would perform the appropriate gymnastics to interpret little-endian byte streams. It also seems a priori a bit strange to have only big-endian varieties of BN byte-conversions. This CL provides little-endian equivalents of BN_bn2bin_padded and BN_bin2bn. BUG=97 Change-Id: I0e92483286def86d9bd71a46d6a967a3be50f80b Reviewed-on: https://boringssl-review.googlesource.com/12641 Reviewed-by: David Benjamin <davidben@google.com> Commit-Queue: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
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: