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

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: Review. 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') | remoting/host/pin_hash_unittest.cc » ('J')
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..525b34b7d6aee0ff385a6d229b0a800d44c17d53
--- /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 {
+
+// Hashes a host ID and a PIN.
+// A Me2Me host uses this to hash a shared secret.
Wez 2012/05/01 01:02:36 nit: Suggest "Create a Me2Me shared-secret hash, c
simonmorris 2012/05/01 01:11:55 Done.
+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') | remoting/host/pin_hash_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698