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

Issue 1648793005: Adds SecurityContext.useCertificateChainBytes (Closed)

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

Description

Adds SecurityContext.useCertificateChainBytes Changes SecurityContext.useCertificateChain to call the new method and return a Future. R=whesse@google.com Committed: https://github.com/dart-lang/sdk/commit/8f356bf87ef2fa85559f821a4842b85a31d1cfeb

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : *AsBytes -> *Bytes #

Unified diffs Side-by-side diffs Delta from patch set Stats (+208 lines, -99 lines) Patch
M runtime/bin/io_natives.cc View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M runtime/bin/secure_socket.cc View 1 2 3 4 5 6 3 chunks +102 lines, -13 lines 0 comments Download
M runtime/bin/secure_socket_patch.dart View 1 2 3 4 5 6 1 chunk +10 lines, -5 lines 0 comments Download
M runtime/bin/secure_socket_unsupported.cc View 1 2 3 4 5 6 2 chunks +2 lines, -7 lines 0 comments Download
M sdk/lib/io/http.dart View 1 2 1 chunk +1 line, -1 line 0 comments Download
M sdk/lib/io/security_context.dart View 1 2 3 1 chunk +18 lines, -2 lines 0 comments Download
M tests/standalone/io/http_proxy_advanced_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/http_proxy_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/https_bad_certificate_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/https_client_certificate_test.dart View 1 2 3 4 5 6 1 chunk +4 lines, -4 lines 0 comments Download
M tests/standalone/io/https_server_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/https_unauthorized_test.dart View 1 2 3 4 5 6 1 chunk +3 lines, -2 lines 0 comments Download
M tests/standalone/io/raw_secure_server_closing_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/raw_secure_server_socket_test.dart View 1 2 3 4 5 6 2 chunks +6 lines, -4 lines 0 comments Download
M tests/standalone/io/raw_secure_socket_pause_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/raw_secure_socket_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/regress_21160_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_bad_certificate_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_client_raw_server_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_client_server_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_multiple_client_server_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_server_client_certificate_test.dart View 1 2 3 4 5 6 1 chunk +4 lines, -4 lines 0 comments Download
M tests/standalone/io/secure_server_closing_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_server_socket_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_session_resume_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_socket_alpn_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_socket_renegotiate_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_socket_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/secure_unauthorized_test.dart View 1 2 3 4 5 6 1 chunk +3 lines, -2 lines 0 comments Download
M tests/standalone/io/security_context_argument_test.dart View 1 2 3 4 5 6 1 chunk +9 lines, -9 lines 0 comments Download
M tests/standalone/io/socket_upgrade_to_secure_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/web_socket_compression_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/web_socket_error_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download
M tests/standalone/io/web_socket_test.dart View 1 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 14 (4 generated)
zra
4 years, 10 months ago (2016-01-29 17:45:19 UTC) #2
Bill Hesse
I don't understand why these are called "UseXAsBytes" instead of "UseXBytes" or fromBytes. The certificates ...
4 years, 10 months ago (2016-02-01 18:20:11 UTC) #3
zra
On 2016/02/01 18:20:11, Bill Hesse wrote: > I don't understand why these are called "UseXAsBytes" ...
4 years, 10 months ago (2016-02-01 19:04:55 UTC) #4
zra
ping
4 years, 10 months ago (2016-02-02 16:53:48 UTC) #6
Bill Hesse
LGTM, thanks.
4 years, 10 months ago (2016-02-02 18:36:30 UTC) #7
zra
Committed patchset #7 (id:120001) manually as 8f356bf87ef2fa85559f821a4842b85a31d1cfeb (presubmit successful).
4 years, 10 months ago (2016-02-02 18:54:11 UTC) #9
kevmoo
On 2016/02/02 18:54:11, zra wrote: > Committed patchset #7 (id:120001) manually as > 8f356bf87ef2fa85559f821a4842b85a31d1cfeb (presubmit ...
4 years, 10 months ago (2016-02-02 19:02:34 UTC) #10
Paul Berry
This CL broke some analyzer tests. The analyzer bot is stalled for some reason, but ...
4 years, 10 months ago (2016-02-02 20:22:05 UTC) #12
zra
On 2016/02/02 20:22:05, Paul Berry wrote: > This CL broke some analyzer tests. The analyzer ...
4 years, 10 months ago (2016-02-02 20:39:51 UTC) #13
zra
4 years, 10 months ago (2016-02-02 21:27:09 UTC) #14
Message was sent while issue was closed.
On 2016/02/02 19:02:34, kevmoo wrote:
> On 2016/02/02 18:54:11, zra wrote:
> > Committed patchset #7 (id:120001) manually as
> > 8f356bf87ef2fa85559f821a4842b85a31d1cfeb (presubmit successful).
> 
> Please update changelog, too :-)

Updating in next CL. https://codereview.chromium.org/1665433002/

Powered by Google App Engine
This is Rietveld 408576698