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

Side by Side Diff: components/cryptauth/cryptauth_enrollment_utils.cc

Issue 2502343003: Moved //components/proximity_auth/cryptauth to //components/cryptauth. (Closed)
Patch Set: Fixed proto #includes. Created 4 years, 1 month 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/proximity_auth/cryptauth/cryptauth_enrollment_utils.h" 5 #include "components/cryptauth/cryptauth_enrollment_utils.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include "base/base64url.h" 10 #include "base/base64url.h"
11 #include "base/md5.h" 11 #include "base/md5.h"
12 #include "base/sha1.h" 12 #include "base/sha1.h"
13 13
14 namespace proximity_auth { 14 namespace cryptauth {
15 15
16 int64_t HashStringToInt64(const std::string& string) { 16 int64_t HashStringToInt64(const std::string& string) {
17 base::MD5Context context; 17 base::MD5Context context;
18 base::MD5Init(&context); 18 base::MD5Init(&context);
19 base::MD5Update(&context, string); 19 base::MD5Update(&context, string);
20 20
21 base::MD5Digest digest; 21 base::MD5Digest digest;
22 base::MD5Final(&digest, &context); 22 base::MD5Final(&digest, &context);
23 23
24 // Fold the digest into an int64_t value. |digest.a| is a 16-byte array, so we 24 // Fold the digest into an int64_t value. |digest.a| is a 16-byte array, so we
25 // sum the two 8-byte halves of the digest to create the hash. 25 // sum the two 8-byte halves of the digest to create the hash.
26 int64_t hash = 0; 26 int64_t hash = 0;
27 for (size_t i = 0; i < sizeof(digest.a); ++i) { 27 for (size_t i = 0; i < sizeof(digest.a); ++i) {
28 uint8_t byte = digest.a[i]; 28 uint8_t byte = digest.a[i];
29 hash += static_cast<int64_t>(byte) << (i % sizeof(int64_t)); 29 hash += static_cast<int64_t>(byte) << (i % sizeof(int64_t));
30 } 30 }
31 31
32 return hash; 32 return hash;
33 } 33 }
34 34
35 std::string CalculateDeviceUserId(const std::string& device_id, 35 std::string CalculateDeviceUserId(const std::string& device_id,
36 const std::string& user_id) { 36 const std::string& user_id) {
37 std::string device_user_id; 37 std::string device_user_id;
38 base::Base64UrlEncode(base::SHA1HashString(device_id + "|" + user_id), 38 base::Base64UrlEncode(base::SHA1HashString(device_id + "|" + user_id),
39 base::Base64UrlEncodePolicy::INCLUDE_PADDING, 39 base::Base64UrlEncodePolicy::INCLUDE_PADDING,
40 &device_user_id); 40 &device_user_id);
41 return device_user_id; 41 return device_user_id;
42 } 42 }
43 43
44 } // namespace proximity_auth 44 } // namespace cryptauth
OLDNEW
« no previous file with comments | « components/cryptauth/cryptauth_enrollment_utils.h ('k') | components/cryptauth/cryptauth_gcm_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698