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

Unified Diff: remoting/host/pin_hash.h

Issue 10243011: [Chromoting] Factor out common code for pin hashing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync. Created 8 years, 8 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 | « no previous file | remoting/host/pin_hash.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/pin_hash.h
diff --git a/remoting/host/pin_hash.h b/remoting/host/pin_hash.h
new file mode 100644
index 0000000000000000000000000000000000000000..033ac4a4cc1d720dd643ba45a40654b7603c596c
--- /dev/null
+++ b/remoting/host/pin_hash.h
@@ -0,0 +1,25 @@
+// 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.
+
+#ifndef REMOTING_HOST_PIN_HASH_H_
+#define REMOTING_HOST_PIN_HASH_H_
+
+#include <string>
+
+namespace remoting {
+
+// Creates a Me2Me shared-secret hash, consisting of the hash method, and the
+// hashed host ID and PIN.
+std::string MakeHostPinHash(const std::string& host_id, const std::string& pin);
+
+// Extracts the hash function from the given hash, uses it to calculate the
+// hash of the given host ID and PIN, and compares that hash to the given hash.
+// Returns true if the calculated and given hashes are equal.
+bool VerifyHostPinHash(const std::string& hash,
+ const std::string& host_id,
+ const std::string& pin);
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_PIN_HASH_
« no previous file with comments | « no previous file | remoting/host/pin_hash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698