Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/proximity_auth/cryptauth/cryptauth_enrollment_utils.h" |
| 6 | 6 |
| 7 #include <math.h> | |
| 8 | |
| 9 #include "base/md5.h" | |
| 7 #include "base/sha1.h" | 10 #include "base/sha1.h" |
| 8 #include "components/proximity_auth/cryptauth/base64url.h" | 11 #include "components/proximity_auth/cryptauth/base64url.h" |
| 9 | 12 |
| 10 namespace proximity_auth { | 13 namespace proximity_auth { |
| 11 | 14 |
| 15 int64_t HashStringToInt64(const std::string& string) { | |
| 16 base::MD5Context context; | |
| 17 base::MD5Init(&context); | |
| 18 base::MD5Update(&context, string); | |
| 19 | |
| 20 base::MD5Digest digest; | |
| 21 base::MD5Final(&digest, &context); | |
|
sacomoto
2015/08/27 15:38:05
Why don't you use |base::MD5Sum()|?
Tim Song
2015/08/27 18:12:27
I feel it's a bit safer to use the MD5Context inte
sacomoto
2015/08/28 14:47:17
Ok. It makes sense.
| |
| 22 | |
| 23 // Fold the digest into an int64 value. | |
|
sacomoto
2015/08/27 15:38:05
Please add a comment saying that |digest.a| has 12
Tim Song
2015/08/27 18:12:27
Done.
| |
| 24 int64_t hash = 0; | |
| 25 for (size_t i = 0; i < sizeof(digest.a); ++i) { | |
| 26 uint8_t byte = digest.a[i]; | |
| 27 hash += static_cast<int64_t>(byte) << (i % sizeof(int64_t)); | |
| 28 } | |
| 29 | |
| 30 return hash; | |
| 31 } | |
| 32 | |
| 12 std::string CalculateDeviceUserId(const std::string& device_id, | 33 std::string CalculateDeviceUserId(const std::string& device_id, |
| 13 const std::string& user_id) { | 34 const std::string& user_id) { |
| 14 std::string device_user_id; | 35 std::string device_user_id; |
| 15 Base64UrlEncode(base::SHA1HashString(device_id + "|" + user_id), | 36 Base64UrlEncode(base::SHA1HashString(device_id + "|" + user_id), |
| 16 &device_user_id); | 37 &device_user_id); |
| 17 return device_user_id; | 38 return device_user_id; |
| 18 } | 39 } |
| 19 | 40 |
| 20 } // namespace proximity_auth | 41 } // namespace proximity_auth |
| OLD | NEW |