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

Unified Diff: remoting/protocol/auth_util.cc

Issue 9663043: Add a boolean |had_context| argument to the TLS ExportKeyingMaterial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Make suggested changes, add patch file Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/third_party/nss/ssl/sslinfo.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/auth_util.cc
===================================================================
--- remoting/protocol/auth_util.cc (revision 126517)
+++ remoting/protocol/auth_util.cc (working copy)
@@ -47,7 +47,7 @@
// Get keying material from SSL.
unsigned char key_material[kAuthDigestLength];
int export_result = socket->ExportKeyingMaterial(
- label, "", key_material, kAuthDigestLength);
+ label, false, "", key_material, kAuthDigestLength);
wtc 2012/03/14 03:35:46 Here we're using no context (""), so the new has_c
if (export_result != net::OK) {
LOG(ERROR) << "Error fetching keying material: " << export_result;
return std::string();
« no previous file with comments | « net/third_party/nss/ssl/sslinfo.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698