Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-16Use the straight-forward ROTATE macro.David Benjamin
I would hope any sensible compiler would recognize the rotation. (If not, we should at least pull this into crypto/internal.h.) Confirmed that clang at least produces the exact same instructions for sha256_block_data_order for release + NO_ASM. This is also mostly moot as SHA-1 and SHA-256 both have assembly versions on x86 that sidestep most of this. For the digests, take it out of md32_common.h since it doesn't use the macro. md32_common.h isn't sure whether it's a multiply-included header or not. It should be, but it has an #include guard (doesn't quite do what you'd want) and will get HOST_c2l, etc., confused if one tries to include it twice. Change-Id: I1632801de6473ffd2c6557f3412521ec5d6b305c Reviewed-on: https://boringssl-review.googlesource.com/6650 Reviewed-by: Adam Langley <agl@google.com>
2015-10-27Fix shared library build on OS X.David Benjamin
It seems OS X actually cares about symbol resolution and dependencies when you create a dylib. Probably because they do two-level name resolution. (Obligatory disclaimer: BoringSSL does not have a stable ABI and is thus not suitable for a traditional system-wide library.) BUG=539603 Change-Id: Ic26c4ad23840fe6c1f4825c44671e74dd2e33870 Reviewed-on: https://boringssl-review.googlesource.com/6131 Reviewed-by: Adam Langley <alangley@gmail.com>
2015-08-26Move arm_arch.h and fix up lots of include paths.Adam Langley
arm_arch.h is included from ARM asm files, but lives in crypto/, not openssl/include/. Since the asm files are often built from a different location than their position in the source tree, relative include paths are unlikely to work so, rather than having crypto/ be a de-facto, second global include path, this change moves arm_arch.h to include/openssl/. It also removes entries from many include paths because they should be needed as relative includes are always based on the locations of the source file. Change-Id: I638ff43d641ca043a4fc06c0d901b11c6ff73542 Reviewed-on: https://boringssl-review.googlesource.com/5746 Reviewed-by: Adam Langley <agl@google.com>
2015-08-07Clean up the DES_key_schedule logic.David Benjamin
It's not clear why OpenSSL had a union. The comment says something about sizes of long, since OpenSSL doesn't use stdint.h. But the variable is treated as a bunch of uint32_t's, not DES_cblocks. The key schedule is also always used by iterating or indexing into a uint32_t*, treating the 16 2-word subkeys as a single uint32_t[32]. Instead, index into them properly shush any picky tools. The compiler should be able to figure out what's going on and optimize it appropriately. BUG=517495 Change-Id: I83d0e63ac2c6fb76fac1dceda9f2fd6762074341 Reviewed-on: https://boringssl-review.googlesource.com/5627 Reviewed-by: Adam Langley <agl@google.com>
2015-08-01Add |DES_set_key_unchecked| as an alias for |DES_set_key|.Matt Braithwaite
Change-Id: I00296b0602a95b51366586b30ccd95261dd7007b Reviewed-on: https://boringssl-review.googlesource.com/5532 Reviewed-by: Adam Langley <agl@google.com>
2015-06-24Restore |DES_ede3_cfb_encrypt| and |DES_ede3_cfb64_encrypt| from OpenSSL at ↵Matt Braithwaite
ce7e647b. Change-Id: I7ab7ea3cdabc697b2945a50c8d8f349d6b408848 Reviewed-on: https://boringssl-review.googlesource.com/5211 Reviewed-by: Adam Langley <agl@google.com>
2015-05-20Implement |DES_ede2_cbc_encrypt|.Matt Braithwaite
Change-Id: I0d2a09242e2d5092ee7facab4729e9af36d9d548 Reviewed-on: https://boringssl-review.googlesource.com/4752 Reviewed-by: Adam Langley <agl@google.com>
2015-04-13Eliminate unnecessary includes from low-level crypto modules.Brian Smith
Beyond generally eliminating unnecessary includes, eliminate as many includes of headers that declare/define particularly error-prone functionality like strlen, malloc, and free. crypto/err/internal.h was added to remove the dependency on openssl/thread.h from the public openssl/err.h header. The include of <stdlib.h> in openssl/mem.h was retained since it defines OPENSSL_malloc and friends as macros around the stdlib.h functions. The public x509.h, x509v3.h, and ssl.h headers were not changed in order to minimize breakage of source compatibility with external code. Change-Id: I0d264b73ad0a720587774430b2ab8f8275960329 Reviewed-on: https://boringssl-review.googlesource.com/4220 Reviewed-by: Adam Langley <agl@google.com>
2015-03-18Add support for 3DES ECB.Adam Langley
At least the linker can discard this function in the cases where nobody is calling it. Change-Id: I30050e918e6bc1dd9c97cc70f3a56408701abebc Reviewed-on: https://boringssl-review.googlesource.com/3724 Reviewed-by: Adam Langley <agl@google.com>
2015-03-18Add DES_set_odd_parity.Adam Langley
Because NTLM authentication is still a thing. Change-Id: I3308a8431c82f0b614e09ce3e5efac1526881f1e Reviewed-on: https://boringssl-review.googlesource.com/3723 Reviewed-by: Adam Langley <agl@google.com>
2015-01-29Change CMakeLists.txt to two-space indent.Adam Langley
find -name CMakeLists.txt -type f | xargs sed -e 's/\t/ /g' -i Change-Id: I01636b1849c00ba918f48828252492d99b0403ac
2014-07-30A bunch of dead assignments.David Benjamin
Caught by clang scan-build. Change-Id: I4f10c879dc137d4a14a7a395764d28e5caa033ff Reviewed-on: https://boringssl-review.googlesource.com/1342 Reviewed-by: Adam Langley <agl@google.com>
2014-07-15Move public headers to include/openssl/Adam Langley
Previously, public headers lived next to the respective code and there were symlinks from include/openssl to them. This doesn't work on Windows. This change moves the headers to live in include/openssl. In cases where some symlinks pointed to the same header, I've added a file that just includes the intended target. These cases are all for backwards-compat. Change-Id: I6e285b74caf621c644b5168a4877db226b07fd92 Reviewed-on: https://boringssl-review.googlesource.com/1180 Reviewed-by: David Benjamin <davidben@chromium.org> Reviewed-by: Adam Langley <agl@google.com>
2014-06-21Inital import.Adam Langley
Initial fork from f2d678e6e89b6508147086610e985d4e8416e867 (1.0.2 beta). (This change contains substantial changes from the original and effectively starts a new history.)