Chromium Code Reviews
[email protected] (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(533)

Issue 16126013: Implement Sign() method of Channel_id for NSS (Closed)

Created:
7 years, 6 months ago by ramant (doing other things)
Modified:
7 years, 6 months ago
Reviewers:
wtc
CC:
chromium-reviews, cbentzel+watch_chromium.org, Ryan Hamilton, agl
Visibility:
Public.

Description

Patch Set 1 : Enabled SignAndVerify unittest #

Total comments: 14

Patch Set 2 : Changes to fix wtc's comments #

Total comments: 21

Patch Set 3 : Made changes per wtc's comments in patchset 2 #

Patch Set 4 : Fix compiler error #

Total comments: 4

Patch Set 5 : Fixed wtc's comments in patchset 4 #

Total comments: 2

Patch Set 6 : Fixed comment in quic_crypto_server_stream_test.cc #

Patch Set 7 : Added SSL (NSS/OpenSSL) dependency for quic_unittests #

Unified diffs Side-by-side diffs Delta from patch set Stats (+122 lines, -40 lines) Patch
M net/net.gyp View 1 2 3 4 5 6 1 chunk +6 lines, -0 lines 0 comments Download
M net/quic/crypto/channel_id.h View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
M net/quic/crypto/channel_id_openssl.cc View 1 2 1 chunk +6 lines, -5 lines 0 comments Download
M net/quic/crypto/channel_id_test.cc View 1 2 2 chunks +2 lines, -3 lines 0 comments Download
M net/quic/crypto/crypto_handshake.h View 1 1 chunk +2 lines, -0 lines 0 comments Download
M net/quic/crypto/crypto_handshake.cc View 1 1 chunk +4 lines, -0 lines 0 comments Download
M net/quic/quic_crypto_server_stream_test.cc View 1 2 3 4 5 2 chunks +3 lines, -4 lines 0 comments Download
M net/quic/test_tools/crypto_test_utils.h View 1 2 2 chunks +1 line, -5 lines 0 comments Download
M net/quic/test_tools/crypto_test_utils.cc View 1 2 2 chunks +7 lines, -0 lines 0 comments Download
M net/quic/test_tools/crypto_test_utils_nss.cc View 1 2 3 4 4 chunks +86 lines, -17 lines 0 comments Download
M net/quic/test_tools/crypto_test_utils_openssl.cc View 1 2 chunks +1 line, -6 lines 0 comments Download

Messages

Total messages: 15 (0 generated)
ramant (doing other things)
Hi Wan-Teh, Tested SignAndVerify with the Verify functionality from CL https://codereview.chromium.org/16638016/. Disabled QuicCryptoServerStreamTest's DISABLED_ChannelID unittest ...
7 years, 6 months ago (2013-06-14 01:16:05 UTC) #1
wtc
Patch set 1 LGTM. https://codereview.chromium.org/16126013/diff/4001/net/quic/crypto/channel_id.h File net/quic/crypto/channel_id.h (right): https://codereview.chromium.org/16126013/diff/4001/net/quic/crypto/channel_id.h#newcode31 net/quic/crypto/channel_id.h:31: virtual std::string ChannelIDKeyForHostname(const std::string& hostname) ...
7 years, 6 months ago (2013-06-14 22:51:35 UTC) #2
ramant (doing other things)
Hi Wan-Teh, Made all the changes you have suggested. Please take another look. Verified SignAndVerify ...
7 years, 6 months ago (2013-06-15 02:05:30 UTC) #3
wtc
Patch set 2 LGTM. I suggest some changes. Thanks. https://chromiumcodereview.appspot.com/16126013/diff/20002/net/quic/crypto/channel_id.h File net/quic/crypto/channel_id.h (right): https://chromiumcodereview.appspot.com/16126013/diff/20002/net/quic/crypto/channel_id.h#newcode29 net/quic/crypto/channel_id.h:29: ...
7 years, 6 months ago (2013-06-17 18:13:22 UTC) #4
ramant (doing other things)
PTAL. thanks. https://codereview.chromium.org/16126013/diff/20002/net/quic/crypto/channel_id.h File net/quic/crypto/channel_id.h (right): https://codereview.chromium.org/16126013/diff/20002/net/quic/crypto/channel_id.h#newcode29 net/quic/crypto/channel_id.h:29: // GetKeyForHostname returns the key that |ChannelIDSigner| ...
7 years, 6 months ago (2013-06-17 19:56:03 UTC) #5
wtc
Patch set 4 LGTM. Thanks! https://codereview.chromium.org/16126013/diff/61001/net/quic/quic_crypto_server_stream_test.cc File net/quic/quic_crypto_server_stream_test.cc (right): https://codereview.chromium.org/16126013/diff/61001/net/quic/quic_crypto_server_stream_test.cc#newcode260 net/quic/quic_crypto_server_stream_test.cc:260: // CompleteCryptoHandshake verifies ChannelID's ...
7 years, 6 months ago (2013-06-17 21:46:52 UTC) #6
ramant (doing other things)
https://codereview.chromium.org/16126013/diff/61001/net/quic/quic_crypto_server_stream_test.cc File net/quic/quic_crypto_server_stream_test.cc (right): https://codereview.chromium.org/16126013/diff/61001/net/quic/quic_crypto_server_stream_test.cc#newcode260 net/quic/quic_crypto_server_stream_test.cc:260: // CompleteCryptoHandshake verifies ChannelID's GetKeyForHostname. On 2013/06/17 21:46:52, wtc ...
7 years, 6 months ago (2013-06-17 22:02:13 UTC) #7
wtc
Patch set 5 LGTM. https://codereview.chromium.org/16126013/diff/86001/net/quic/quic_crypto_server_stream_test.cc File net/quic/quic_crypto_server_stream_test.cc (right): https://codereview.chromium.org/16126013/diff/86001/net/quic/quic_crypto_server_stream_test.cc#newcode261 net/quic/quic_crypto_server_stream_test.cc:261: // (stream_.crypto_negotiated_params().channel_id) GetKeyForHostname. This should ...
7 years, 6 months ago (2013-06-17 23:09:37 UTC) #8
ramant (doing other things)
https://codereview.chromium.org/16126013/diff/86001/net/quic/quic_crypto_server_stream_test.cc File net/quic/quic_crypto_server_stream_test.cc (right): https://codereview.chromium.org/16126013/diff/86001/net/quic/quic_crypto_server_stream_test.cc#newcode261 net/quic/quic_crypto_server_stream_test.cc:261: // (stream_.crypto_negotiated_params().channel_id) GetKeyForHostname. On 2013/06/17 23:09:37, wtc wrote: > ...
7 years, 6 months ago (2013-06-17 23:16:46 UTC) #9
wtc
Patch set 6 LGTM.
7 years, 6 months ago (2013-06-17 23:19:05 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/[email protected]/16126013/99001
7 years, 6 months ago (2013-06-17 23:24:15 UTC) #11
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 6 months ago (2013-06-17 23:45:20 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/[email protected]/16126013/113001
7 years, 6 months ago (2013-06-18 02:05:54 UTC) #13
wtc
Patch set 7 LGTM.
7 years, 6 months ago (2013-06-18 02:34:07 UTC) #14
commit-bot: I haz the power
7 years, 6 months ago (2013-06-18 08:19:02 UTC) #15
Message was sent while issue was closed.
Change committed as 206913

Powered by Google App Engine
This is Rietveld 408576698