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

Issue 8604001: Move SSL layer initialization into ChannelAuthenticator implementations. (Closed)

Created:
9 years, 1 month ago by Sergey Ulanov
Modified:
9 years, 1 month ago
Reviewers:
Ryan Sleevi, Wez
CC:
chromium-reviews, jamiewalch+watch_chromium.org, hclam+watch_chromium.org, simonmorris+watch_chromium.org, wez+watch_chromium.org, garykac+watch_chromium.org, lambroslambrou+watch_chromium.org, sergeyu+watch_chromium.org, Ryan Sleevi
Visibility:
Public.

Description

Move SSL layer initialization into ChannelAuthenticator implementations. Also separate client and host authenticators into separate files. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=111311

Patch Set 1 #

Patch Set 2 : - #

Patch Set 3 : - #

Total comments: 79

Patch Set 4 : - #

Patch Set 5 : - #

Patch Set 6 : Simple->V1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+599 lines, -634 lines) Patch
M remoting/host/support_access_verifier.cc View 1 chunk +1 line, -1 line 0 comments Download
D remoting/protocol/auth_token_utils.h View 1 chunk +0 lines, -25 lines 0 comments Download
D remoting/protocol/auth_token_utils.cc View 1 chunk +0 lines, -34 lines 0 comments Download
A remoting/protocol/auth_util.h View 1 chunk +39 lines, -0 lines 0 comments Download
A remoting/protocol/auth_util.cc View 1 2 3 4 1 chunk +60 lines, -0 lines 0 comments Download
M remoting/protocol/channel_authenticator.h View 1 2 3 4 1 chunk +19 lines, -79 lines 0 comments Download
D remoting/protocol/channel_authenticator.cc View 1 chunk +0 lines, -220 lines 0 comments Download
M remoting/protocol/connection_to_host.cc View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M remoting/protocol/jingle_channel_connector.h View 1 2 3 4 1 chunk +5 lines, -4 lines 0 comments Download
M remoting/protocol/jingle_datagram_connector.h View 1 2 3 4 2 chunks +7 lines, -7 lines 0 comments Download
M remoting/protocol/jingle_datagram_connector.cc View 2 chunks +4 lines, -4 lines 0 comments Download
M remoting/protocol/jingle_session.cc View 1 2 3 4 5 2 chunks +11 lines, -2 lines 0 comments Download
M remoting/protocol/jingle_stream_connector.h View 2 chunks +3 lines, -22 lines 0 comments Download
M remoting/protocol/jingle_stream_connector.cc View 1 2 3 4 5 chunks +9 lines, -120 lines 0 comments Download
M remoting/protocol/pepper_channel.h View 1 2 3 4 3 chunks +6 lines, -3 lines 0 comments Download
M remoting/protocol/pepper_session.cc View 1 2 3 4 5 2 chunks +4 lines, -1 line 0 comments Download
M remoting/protocol/pepper_stream_channel.h View 3 chunks +5 lines, -20 lines 0 comments Download
M remoting/protocol/pepper_stream_channel.cc View 1 2 5 chunks +12 lines, -88 lines 0 comments Download
A remoting/protocol/v1_client_channel_authenticator.h View 1 2 3 4 5 1 chunk +63 lines, -0 lines 0 comments Download
A remoting/protocol/v1_client_channel_authenticator.cc View 1 2 3 4 5 1 chunk +135 lines, -0 lines 0 comments Download
A remoting/protocol/v1_host_channel_authenticator.h View 1 2 3 4 5 1 chunk +67 lines, -0 lines 0 comments Download
A remoting/protocol/v1_host_channel_authenticator.cc View 1 2 3 4 5 1 chunk +142 lines, -0 lines 0 comments Download
M remoting/remoting.gyp View 1 2 3 4 5 2 chunks +6 lines, -3 lines 0 comments Download

Messages

Total messages: 8 (0 generated)
Sergey Ulanov
9 years, 1 month ago (2011-11-19 00:47:07 UTC) #1
Ryan Sleevi
drive by http://codereview.chromium.org/8604001/diff/25/remoting/protocol/simple_host_channel_authenticator.cc File remoting/protocol/simple_host_channel_authenticator.cc (right): http://codereview.chromium.org/8604001/diff/25/remoting/protocol/simple_host_channel_authenticator.cc#newcode141 remoting/protocol/simple_host_channel_authenticator.cc:141: result |= received_auth_bytes[i] ^ auth_bytes_[i]; nit: See ...
9 years, 1 month ago (2011-11-19 19:45:26 UTC) #2
Sergey Ulanov
http://codereview.chromium.org/8604001/diff/25/remoting/protocol/simple_host_channel_authenticator.cc File remoting/protocol/simple_host_channel_authenticator.cc (right): http://codereview.chromium.org/8604001/diff/25/remoting/protocol/simple_host_channel_authenticator.cc#newcode141 remoting/protocol/simple_host_channel_authenticator.cc:141: result |= received_auth_bytes[i] ^ auth_bytes_[i]; On 2011/11/19 19:45:26, Ryan ...
9 years, 1 month ago (2011-11-22 02:49:18 UTC) #3
Wez
http://codereview.chromium.org/8604001/diff/25/remoting/protocol/auth_util.cc File remoting/protocol/auth_util.cc (right): http://codereview.chromium.org/8604001/diff/25/remoting/protocol/auth_util.cc#newcode10 remoting/protocol/auth_util.cc:10: #include "crypto/sha2.h" This should come after crypto/hmac.h http://codereview.chromium.org/8604001/diff/25/remoting/protocol/auth_util.cc#newcode26 remoting/protocol/auth_util.cc:26: ...
9 years, 1 month ago (2011-11-22 22:29:46 UTC) #4
Sergey Ulanov
http://codereview.chromium.org/8604001/diff/25/remoting/protocol/auth_util.cc File remoting/protocol/auth_util.cc (right): http://codereview.chromium.org/8604001/diff/25/remoting/protocol/auth_util.cc#newcode10 remoting/protocol/auth_util.cc:10: #include "crypto/sha2.h" On 2011/11/22 22:29:48, Wez wrote: > This ...
9 years, 1 month ago (2011-11-23 01:23:41 UTC) #5
Wez
LGTM with the rename Simple -> V1 as discussed.
9 years, 1 month ago (2011-11-23 01:43:16 UTC) #6
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/sergeyu@chromium.org/8604001/14002
9 years, 1 month ago (2011-11-23 02:07:53 UTC) #7
commit-bot: I haz the power
9 years, 1 month ago (2011-11-23 03:35:33 UTC) #8
Try job failure for 8604001-14002 (retry) on mac_rel for step "media_unittests".
It's a second try, previously, step "media_unittests" failed.
http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=mac_rel&nu...

Powered by Google App Engine
This is Rietveld 408576698