Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Issue 1319703002: Breaking Change: merge BoringSSL branch into master (Closed)

Created:
5 years, 3 months ago by Bill Hesse
Modified:
5 years, 3 months ago
CC:
reviews_dartlang.org, vm-dev_dartlang.org, ricow1
Base URL:
git@github.com:dart-lang/sdk.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Breaking Change: merge BoringSSL branch into master This replaces the NSS secure networking library from Mozilla with the BoringSSL library from Google. This library, based on OpenSSL, reads certificates from files in PEM format, rather than storing certificates and keys in a SQLite database, the way NSS does. There will be a blog post, changelog entries, and other documentation of the breaking changes. Committed: https://github.com/dart-lang/sdk/commit/13bf8ff9f8d0f993673ac40bda08bde460ba71dd

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+165472 lines, -4390 lines) Patch
M DEPS View 3 chunks +10 lines, -0 lines 0 comments Download
M runtime/bin/bin.gypi View 3 chunks +4 lines, -22 lines 0 comments Download
M runtime/bin/io_impl_sources.gypi View 4 chunks +11 lines, -6 lines 0 comments Download
M runtime/bin/io_natives.cc View 2 chunks +13 lines, -4 lines 0 comments Download
A + runtime/bin/io_service_no_ssl.h View 4 chunks +6 lines, -5 lines 0 comments Download
A + runtime/bin/io_service_no_ssl.cc View 1 chunk +1 line, -2 lines 0 comments Download
D runtime/bin/net/README-updating View 1 chunk +0 lines, -34 lines 0 comments Download
D runtime/bin/net/nss.gyp View 1 chunk +0 lines, -1400 lines 0 comments Download
D runtime/bin/net/nss_memio.h View 1 chunk +0 lines, -111 lines 0 comments Download
D runtime/bin/net/nss_memio.cc View 1 chunk +0 lines, -538 lines 0 comments Download
D runtime/bin/net/os_linux.S View 1 chunk +0 lines, -9 lines 0 comments Download
D runtime/bin/net/os_windows.c View 1 chunk +0 lines, -11 lines 0 comments Download
D runtime/bin/net/sqlite.gyp View 1 chunk +0 lines, -226 lines 0 comments Download
D runtime/bin/net/ssl.gyp View 1 chunk +0 lines, -216 lines 0 comments Download
M runtime/bin/secure_socket.h View 5 chunks +31 lines, -27 lines 0 comments Download
M runtime/bin/secure_socket.cc View 17 chunks +607 lines, -562 lines 0 comments Download
M runtime/bin/secure_socket_patch.dart View 4 chunks +69 lines, -8 lines 0 comments Download
M runtime/bin/secure_socket_unsupported.cc View 1 chunk +60 lines, -0 lines 0 comments Download
M runtime/bin/utils.h View 1 chunk +1 line, -1 line 0 comments Download
M sdk/lib/_internal/js_runtime/lib/io_patch.dart View 1 chunk +18 lines, -4 lines 0 comments Download
M sdk/lib/io/http.dart View 5 chunks +18 lines, -13 lines 0 comments Download
M sdk/lib/io/http_impl.dart View 11 chunks +24 lines, -8 lines 0 comments Download
M sdk/lib/io/io.dart View 1 chunk +3 lines, -2 lines 0 comments Download
M sdk/lib/io/iolib_sources.gypi View 1 chunk +3 lines, -2 lines 0 comments Download
M sdk/lib/io/secure_server_socket.dart View 7 chunks +9 lines, -16 lines 0 comments Download
M sdk/lib/io/secure_socket.dart View 24 chunks +42 lines, -240 lines 0 comments Download
A sdk/lib/io/security_context.dart View 1 chunk +184 lines, -0 lines 0 comments Download
M tests/lib/mirrors/invocation_fuzz_test.dart View 1 chunk +6 lines, -0 lines 0 comments Download
A tests/standalone/io/certificates/README View 1 chunk +31 lines, -0 lines 0 comments Download
A tests/standalone/io/certificates/server_chain.pem View 1 chunk +57 lines, -0 lines 0 comments Download
A tests/standalone/io/certificates/server_key.pem View 1 chunk +29 lines, -0 lines 0 comments Download
A tests/standalone/io/certificates/trusted_certs.pem View 1 chunk +19 lines, -0 lines 0 comments Download
A tests/standalone/io/certificates/untrusted_server_chain.pem View 1 chunk +57 lines, -0 lines 0 comments Download
A tests/standalone/io/certificates/untrusted_server_key.pem View 1 chunk +29 lines, -0 lines 0 comments Download
M tests/standalone/io/http_cookie_date_test.dart View 1 chunk +1 line, -0 lines 0 comments Download
M tests/standalone/io/http_headers_test.dart View 1 chunk +1 line, -0 lines 0 comments Download
M tests/standalone/io/http_parser_test.dart View 1 chunk +1 line, -0 lines 0 comments Download
M tests/standalone/io/http_proxy_test.dart View 4 chunks +57 lines, -53 lines 0 comments Download
D tests/standalone/io/https_bad_certificate_client.dart View 1 chunk +0 lines, -81 lines 0 comments Download
M tests/standalone/io/https_bad_certificate_test.dart View 1 chunk +63 lines, -37 lines 0 comments Download
M tests/standalone/io/https_client_certificate_test.dart View 3 chunks +16 lines, -14 lines 0 comments Download
M tests/standalone/io/https_server_test.dart View 4 chunks +14 lines, -12 lines 0 comments Download
M tests/standalone/io/https_unauthorized_client.dart View 2 chunks +8 lines, -5 lines 0 comments Download
M tests/standalone/io/https_unauthorized_test.dart View 1 chunk +11 lines, -5 lines 0 comments Download
D tests/standalone/io/pkcert/README View 1 chunk +0 lines, -16 lines 0 comments Download
D tests/standalone/io/pkcert/cert9.db View Binary file 0 comments Download
D tests/standalone/io/pkcert/key4.db View Binary file 0 comments Download
M tests/standalone/io/raw_secure_server_closing_test.dart View 10 chunks +23 lines, -14 lines 0 comments Download
M tests/standalone/io/raw_secure_server_socket_argument_test.dart View 2 chunks +3 lines, -17 lines 0 comments Download
M tests/standalone/io/raw_secure_server_socket_test.dart View 15 chunks +54 lines, -32 lines 0 comments Download
M tests/standalone/io/raw_secure_socket_pause_test.dart View 2 chunks +74 lines, -69 lines 0 comments Download
M tests/standalone/io/raw_secure_socket_test.dart View 1 chunk +51 lines, -59 lines 0 comments Download
M tests/standalone/io/regress_21160_test.dart View 2 chunks +51 lines, -50 lines 0 comments Download
D tests/standalone/io/secure_bad_certificate_client.dart View 1 chunk +0 lines, -58 lines 0 comments Download
M tests/standalone/io/secure_bad_certificate_test.dart View 1 chunk +66 lines, -44 lines 0 comments Download
M tests/standalone/io/secure_builtin_roots_test.dart View 1 chunk +23 lines, -76 lines 0 comments Download
M tests/standalone/io/secure_client_raw_server_test.dart View 3 chunks +13 lines, -6 lines 0 comments Download
M tests/standalone/io/secure_client_server_test.dart View 3 chunks +15 lines, -6 lines 0 comments Download
M tests/standalone/io/secure_multiple_client_server_test.dart View 3 chunks +13 lines, -6 lines 0 comments Download
M tests/standalone/io/secure_server_client_certificate_test.dart View 3 chunks +14 lines, -8 lines 0 comments Download
M tests/standalone/io/secure_server_client_no_certificate_test.dart View 3 chunks +16 lines, -11 lines 0 comments Download
M tests/standalone/io/secure_server_closing_test.dart View 10 chunks +25 lines, -16 lines 0 comments Download
M tests/standalone/io/secure_server_socket_test.dart View 11 chunks +55 lines, -28 lines 0 comments Download
M tests/standalone/io/secure_session_resume_test.dart View 3 chunks +14 lines, -6 lines 0 comments Download
M tests/standalone/io/secure_socket_alpn_test.dart View 4 chunks +94 lines, -104 lines 0 comments Download
M tests/standalone/io/secure_socket_argument_test.dart View 1 chunk +3 lines, -11 lines 0 comments Download
M tests/standalone/io/secure_socket_bad_data_test.dart View 1 chunk +0 lines, -4 lines 0 comments Download
M tests/standalone/io/secure_socket_renegotiate_client.dart View 3 chunks +7 lines, -3 lines 0 comments Download
M tests/standalone/io/secure_socket_renegotiate_test.dart View 2 chunks +7 lines, -10 lines 0 comments Download
M tests/standalone/io/secure_socket_test.dart View 2 chunks +14 lines, -10 lines 0 comments Download
M tests/standalone/io/secure_unauthorized_client.dart View 3 chunks +6 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_unauthorized_test.dart View 1 chunk +7 lines, -6 lines 0 comments Download
M tests/standalone/io/socket_upgrade_to_secure_test.dart View 6 chunks +25 lines, -16 lines 0 comments Download
M tests/standalone/io/web_socket_error_test.dart View 3 chunks +15 lines, -11 lines 0 comments Download
M tests/standalone/io/web_socket_protocol_processor_test.dart View 1 chunk +1 line, -0 lines 0 comments Download
M tests/standalone/io/web_socket_test.dart View 3 chunks +15 lines, -12 lines 0 comments Download
M tests/standalone/standalone.status View 1 chunk +8 lines, -0 lines 0 comments Download
M third_party/.gitignore View 1 chunk +3 lines, -1 line 0 comments Download
A third_party/boringssl/.gitignore View 1 chunk +2 lines, -0 lines 0 comments Download
A third_party/boringssl/README View 1 chunk +17 lines, -0 lines 0 comments Download
A third_party/boringssl/boringssl.gypi View 1 chunk +431 lines, -0 lines 0 comments Download
A + third_party/boringssl/boringssl_configurations.gypi View 2 chunks +3 lines, -4 lines 0 comments Download
A third_party/boringssl/boringssl_dart.gyp View 1 chunk +62 lines, -0 lines 0 comments Download
A third_party/boringssl/boringssl_tests.gypi View 1 chunk +483 lines, -0 lines 0 comments Download
A third_party/boringssl/err_data.c View 1 chunk +2678 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-aarch64/crypto/aes/aesv8-armx64.S View 1 chunk +751 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-aarch64/crypto/modes/ghashv8-armx64.S View 1 chunk +232 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-aarch64/crypto/sha/sha1-armv8.S View 1 chunk +1215 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-aarch64/crypto/sha/sha256-armv8.S View 1 chunk +1145 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-aarch64/crypto/sha/sha512-armv8.S View 1 chunk +1025 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/aes/aes-armv4.S View 1 chunk +1200 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/aes/aesv8-armx32.S View 1 chunk +756 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/aes/bsaes-armv7.S View 1 chunk +2579 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/bn/armv4-mont.S View 1 chunk +589 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/modes/ghash-armv4.S View 1 chunk +541 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/modes/ghashv8-armx32.S View 1 chunk +233 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/sha/sha1-armv4-large.S View 1 chunk +1462 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/sha/sha256-armv4.S View 1 chunk +2818 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-arm/crypto/sha/sha512-armv4.S View 1 chunk +1869 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/aes/aes-586.S View 1 chunk +3257 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/aes/aesni-x86.S View 1 chunk +2469 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/aes/vpaes-x86.S View 1 chunk +676 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/bn/bn-586.S View 1 chunk +1538 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/bn/co-586.S View 1 chunk +1260 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/bn/x86-mont.S View 1 chunk +460 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/cpu-x86-asm.S View 1 chunk +322 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/md5/md5-586.S View 1 chunk +682 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/modes/ghash-x86.S View 1 chunk +1274 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/rc4/rc4-586.S View 1 chunk +385 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/sha/sha1-586.S View 1 chunk +2799 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/sha/sha256-586.S View 1 chunk +4579 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86/crypto/sha/sha512-586.S View 1 chunk +2831 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/aes/aes-x86_64.S View 1 chunk +2536 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/aes/aesni-x86_64.S View 1 chunk +3565 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/aes/bsaes-x86_64.S View 1 chunk +2507 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/aes/vpaes-x86_64.S View 1 chunk +834 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/bn/rsaz-avx2.S View 1 chunk +34 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/bn/rsaz-x86_64.S View 1 chunk +1127 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/bn/x86_64-mont.S View 1 chunk +728 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/bn/x86_64-mont5.S View 1 chunk +1823 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/cpu-x86_64-asm.S View 1 chunk +143 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/md5/md5-x86_64.S View 1 chunk +671 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/modes/aesni-gcm-x86_64.S View 1 chunk +19 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/modes/ghash-x86_64.S View 1 chunk +1329 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/rand/rdrand-x86_64.S View 1 chunk +48 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/rc4/rc4-md5-x86_64.S View 1 chunk +1262 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/rc4/rc4-x86_64.S View 1 chunk +596 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/sha/sha1-x86_64.S View 1 chunk +2426 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/sha/sha256-x86_64.S View 1 chunk +2844 lines, -0 lines 0 comments Download
A third_party/boringssl/linux-x86_64/crypto/sha/sha512-x86_64.S View 1 chunk +1787 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/aes/aes-586.S View 1 chunk +3221 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/aes/aesni-x86.S View 1 chunk +2433 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/aes/vpaes-x86.S View 1 chunk +650 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/bn/bn-586.S View 1 chunk +1528 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/bn/co-586.S View 1 chunk +1252 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/bn/x86-mont.S View 1 chunk +462 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/cpu-x86-asm.S View 1 chunk +309 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/md5/md5-586.S View 1 chunk +680 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/modes/ghash-x86.S View 1 chunk +1260 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/rc4/rc4-586.S View 1 chunk +383 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/sha/sha1-586.S View 1 chunk +2797 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/sha/sha256-586.S View 1 chunk +4581 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86/crypto/sha/sha512-586.S View 1 chunk +2833 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/aes/aes-x86_64.S View 1 chunk +2535 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/aes/aesni-x86_64.S View 1 chunk +3564 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/aes/bsaes-x86_64.S View 1 chunk +2504 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/aes/vpaes-x86_64.S View 1 chunk +834 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/bn/rsaz-avx2.S View 1 chunk +34 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/bn/rsaz-x86_64.S View 1 chunk +1126 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/bn/x86_64-mont.S View 1 chunk +726 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/bn/x86_64-mont5.S View 1 chunk +1822 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/cpu-x86_64-asm.S View 1 chunk +143 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/md5/md5-x86_64.S View 1 chunk +671 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/modes/aesni-gcm-x86_64.S View 1 chunk +19 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/modes/ghash-x86_64.S View 1 chunk +1328 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/rand/rdrand-x86_64.S View 1 chunk +48 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/rc4/rc4-md5-x86_64.S View 1 chunk +1262 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/rc4/rc4-x86_64.S View 1 chunk +595 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/sha/sha1-x86_64.S View 1 chunk +2425 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/sha/sha256-x86_64.S View 1 chunk +2843 lines, -0 lines 0 comments Download
A third_party/boringssl/mac-x86_64/crypto/sha/sha512-x86_64.S View 1 chunk +1786 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/aes/aes-586.asm View 1 chunk +3219 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/aes/aesni-x86.asm View 1 chunk +2424 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/aes/vpaes-x86.asm View 1 chunk +649 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/bn/bn-586.asm View 1 chunk +1523 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/bn/co-586.asm View 1 chunk +1260 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/bn/x86-mont.asm View 1 chunk +469 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/cpu-x86-asm.asm View 1 chunk +303 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/md5/md5-586.asm View 1 chunk +691 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/modes/ghash-x86.asm View 1 chunk +1265 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/rc4/rc4-586.asm View 1 chunk +382 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/sha/sha1-586.asm View 1 chunk +2805 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/sha/sha256-586.asm View 1 chunk +4591 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86/crypto/sha/sha512-586.asm View 1 chunk +2843 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/aes/aes-x86_64.asm View 1 chunk +2858 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/aes/aesni-x86_64.asm View 1 chunk +4027 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/aes/bsaes-x86_64.asm View 1 chunk +2733 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/aes/vpaes-x86_64.asm View 1 chunk +1137 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/bn/rsaz-avx2.asm View 1 chunk +30 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/bn/rsaz-x86_64.asm View 1 chunk +1320 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/bn/x86_64-mont.asm View 1 chunk +941 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/bn/x86_64-mont5.asm View 1 chunk +2056 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/cpu-x86_64-asm.asm View 1 chunk +154 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/md5/md5-x86_64.asm View 1 chunk +776 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/modes/aesni-gcm-x86_64.asm View 1 chunk +20 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/modes/ghash-x86_64.asm View 1 chunk +1507 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/rand/rdrand-x86_64.asm View 1 chunk +70 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/rc4/rc4-md5-x86_64.asm View 1 chunk +1372 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/rc4/rc4-x86_64.asm View 1 chunk +741 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/sha/sha1-x86_64.asm View 1 chunk +2616 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/sha/sha256-x86_64.asm View 1 chunk +2994 lines, -0 lines 0 comments Download
A third_party/boringssl/win-x86_64/crypto/sha/sha512-x86_64.asm View 1 chunk +1911 lines, -0 lines 0 comments Download

Messages

Total messages: 3 (1 generated)
Bill Hesse
5 years, 3 months ago (2015-08-26 12:32:21 UTC) #2
Bill Hesse
5 years, 3 months ago (2015-08-26 12:42:19 UTC) #3
Message was sent while issue was closed.
Committed patchset #1 (id:1) manually as
13bf8ff9f8d0f993673ac40bda08bde460ba71dd.

Powered by Google App Engine
This is Rietveld 408576698