diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-24 18:24:26 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-24 18:24:26 +0000 |
commit | 26d4accf41d14c363842af2422688246b07aba23 (patch) | |
tree | 59388d8b0a9c8ffeca982ee53896684241a7e9a4 /remoting/host/host_config.h | |
parent | afefc060a6eac61aec0e4e538502fe8bb1a1c436 (diff) | |
download | chromium_src-26d4accf41d14c363842af2422688246b07aba23.zip chromium_src-26d4accf41d14c363842af2422688246b07aba23.tar.gz chromium_src-26d4accf41d14c363842af2422688246b07aba23.tar.bz2 |
Enable V2 authentication for Me2Me host.
Updated both Me2me host and simple host to accept spake2_hmac auth. They still
accept V1 authentication. Also the corresponding scripts are updated to ask
for PIN
BUG=107777
Review URL: http://codereview.chromium.org/9270031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118860 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/host_config.h')
-rw-r--r-- | remoting/host/host_config.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/remoting/host/host_config.h b/remoting/host/host_config.h index bca937d..79b2060 100644 --- a/remoting/host/host_config.h +++ b/remoting/host/host_config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -26,6 +26,8 @@ extern const char kXmppAuthServiceConfigPath[]; extern const char kHostIdConfigPath[]; // Readable host name. extern const char kHostNameConfigPath[]; +// Hash of the host secret used for authentication. +extern const char kHostSecretHashConfigPath[]; // Private keys used for host authentication. extern const char kPrivateKeyConfigPath[]; |