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

Side by Side Diff: third_party/tlslite/patches/save_randoms.patch

Issue 1781003003: Implement referred Token Bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 diff --git a/third_party/tlslite/tlslite/tlsconnection.py b/third_party/tlslite/ tlslite/tlsconnection.py
2 index e42b362..41aab85 100644
3 --- a/third_party/tlslite/tlslite/tlsconnection.py
4 +++ b/third_party/tlslite/tlslite/tlsconnection.py
5 @@ -1570,6 +1570,8 @@ class TLSConnection(TLSRecordLayer):
6 #Set the session
7 self.session = session
8
9 + self.clientRandom = clientHello.random
10 + self.serverRandom = serverHello.random
11 yield None # Handshake done!
12
13 #Calculate the first cipher suite intersection.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698