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

Issue 12381018: QUIC - Some sketching of the crypto handshake. (Closed)

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

Description

QUIC - Some sketching of the crypto handshake. Merge internal CL: 42490294 R=wtc@chromium.org, agl@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=185726

Patch Set 1 #

Total comments: 26

Patch Set 2 : #

Total comments: 6

Patch Set 3 : #

Patch Set 4 : #

Total comments: 2

Patch Set 5 : #

Patch Set 6 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+665 lines, -228 lines) Patch
M net/net.gyp View 1 2 2 chunks +6 lines, -0 lines 0 comments Download
M net/quic/crypto/crypto_framer.h View 2 chunks +7 lines, -1 line 0 comments Download
M net/quic/crypto/crypto_framer.cc View 3 chunks +42 lines, -0 lines 0 comments Download
A net/quic/crypto/crypto_handshake.h View 3 1 chunk +117 lines, -0 lines 0 comments Download
A net/quic/crypto/crypto_handshake.cc View 1 2 3 1 chunk +143 lines, -0 lines 0 comments Download
A net/quic/crypto/crypto_handshake_test.cc View 1 2 1 chunk +14 lines, -0 lines 0 comments Download
M net/quic/crypto/crypto_protocol.h View 4 chunks +39 lines, -41 lines 0 comments Download
M net/quic/crypto/crypto_protocol.cc View 1 chunk +67 lines, -72 lines 0 comments Download
M net/quic/crypto/crypto_utils.h View 1 chunk +7 lines, -26 lines 0 comments Download
M net/quic/crypto/crypto_utils.cc View 3 chunks +18 lines, -75 lines 0 comments Download
A net/quic/crypto/curve25519_key_exchange.h View 1 2 3 4 5 1 chunk +51 lines, -0 lines 0 comments Download
A net/quic/crypto/curve25519_key_exchange.cc View 1 2 3 4 1 chunk +101 lines, -0 lines 0 comments Download
A net/quic/crypto/key_exchange.h View 1 1 chunk +40 lines, -0 lines 0 comments Download
M net/quic/quic_crypto_client_stream.h View 2 chunks +2 lines, -1 line 0 comments Download
M net/quic/quic_crypto_client_stream.cc View 1 chunk +2 lines, -3 lines 0 comments Download
M net/quic/test_tools/quic_test_utils.cc View 3 2 chunks +9 lines, -9 lines 0 comments Download

Messages

Total messages: 16 (0 generated)
ramant (doing other things)
- Did a #if 0 around the calls to crypto_scalarmult_curve25519*. Will enable that code after ...
7 years, 9 months ago (2013-02-28 19:58:41 UTC) #1
agl
https://chromiumcodereview.appspot.com/12381018/diff/1/net/quic/crypto/crypto_handshake.h File net/quic/crypto/crypto_handshake.h (right): https://chromiumcodereview.appspot.com/12381018/diff/1/net/quic/crypto/crypto_handshake.h#newcode22 net/quic/crypto/crypto_handshake.h:22: class NET_EXPORT_PRIVATE QuicCryptoClientConfig { I'm not sure why this ...
7 years, 9 months ago (2013-02-28 21:26:56 UTC) #2
Ryan Hamilton
On 2013/02/28 21:26:56, agl wrote: > https://chromiumcodereview.appspot.com/12381018/diff/1/net/quic/crypto/crypto_handshake.h > File net/quic/crypto/crypto_handshake.h (right): > > https://chromiumcodereview.appspot.com/12381018/diff/1/net/quic/crypto/crypto_handshake.h#newcode22 > ...
7 years, 9 months ago (2013-02-28 21:45:55 UTC) #3
agl
Ah, Mr Ryan is right again. I had the current code in mind, not the ...
7 years, 9 months ago (2013-02-28 21:59:28 UTC) #4
wtc
Patch set 1 LGTM. https://chromiumcodereview.appspot.com/12381018/diff/1/net/net.gyp File net/net.gyp (right): https://chromiumcodereview.appspot.com/12381018/diff/1/net/net.gyp#newcode712 net/net.gyp:712: 'quic/crypto/key_exchange.h', These files need to ...
7 years, 9 months ago (2013-03-01 19:07:58 UTC) #5
ramant (doing other things)
Thanks very much Wan-Teh. Made all the changes you have suggested, https://chromiumcodereview.appspot.com/12381018/diff/1/net/net.gyp File net/net.gyp (right): ...
7 years, 9 months ago (2013-03-01 22:02:04 UTC) #6
ramant (doing other things)
PTAL.
7 years, 9 months ago (2013-03-01 22:03:31 UTC) #7
wtc
Patch set 2 LGTM. I suggest some small changes. Thanks! https://codereview.chromium.org/12381018/diff/12007/net/net.gyp File net/net.gyp (right): https://codereview.chromium.org/12381018/diff/12007/net/net.gyp#newcode710 ...
7 years, 9 months ago (2013-03-01 23:45:23 UTC) #8
wtc
Patch set 3 LGTM.
7 years, 9 months ago (2013-03-02 00:20:16 UTC) #9
ramant (doing other things)
PTAL. https://codereview.chromium.org/12381018/diff/12007/net/net.gyp File net/net.gyp (right): https://codereview.chromium.org/12381018/diff/12007/net/net.gyp#newcode710 net/net.gyp:710: 'quic/crypto/key_exchange.h', On 2013/03/01 23:45:23, wtc wrote: > > ...
7 years, 9 months ago (2013-03-02 00:34:16 UTC) #10
wtc
Patch set 4 LGTM. https://chromiumcodereview.appspot.com/12381018/diff/1023/net/quic/crypto/curve25519_key_exchange.cc File net/quic/crypto/curve25519_key_exchange.cc (right): https://chromiumcodereview.appspot.com/12381018/diff/1023/net/quic/crypto/curve25519_key_exchange.cc#newcode12 net/quic/crypto/curve25519_key_exchange.cc:12: // TODO(rtenneti): Remove the following ...
7 years, 9 months ago (2013-03-02 00:43:42 UTC) #11
ramant (doing other things)
https://chromiumcodereview.appspot.com/12381018/diff/1023/net/quic/crypto/curve25519_key_exchange.cc File net/quic/crypto/curve25519_key_exchange.cc (right): https://chromiumcodereview.appspot.com/12381018/diff/1023/net/quic/crypto/curve25519_key_exchange.cc#newcode12 net/quic/crypto/curve25519_key_exchange.cc:12: // TODO(rtenneti): Remove the following two lines after support ...
7 years, 9 months ago (2013-03-02 00:52:08 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rtenneti@chromium.org/12381018/2011
7 years, 9 months ago (2013-03-02 00:59:46 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rtenneti@chromium.org/12381018/4025
7 years, 9 months ago (2013-03-02 01:33:51 UTC) #14
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/rtenneti@chromium.org/12381018/4025
7 years, 9 months ago (2013-03-02 16:19:56 UTC) #15
commit-bot: I haz the power
7 years, 9 months ago (2013-03-02 17:43:42 UTC) #16
Message was sent while issue was closed.
Change committed as 185726

Powered by Google App Engine
This is Rietveld 408576698