blob: 177d4dd99c6d048d7796ce157a7b4276b954d0a1 [file] [log] [blame]
tengs7df5c5c2015-02-25 07:21:351// Copyright 2015 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "components/proximity_auth/cryptauth/cryptauth_enrollment_utils.h"
6
tengsfd6f252f2015-09-01 19:17:597#include <math.h>
8
petere0807cf2015-11-20 14:46:249#include "base/base64url.h"
tengsfd6f252f2015-09-01 19:17:5910#include "base/md5.h"
tengs7df5c5c2015-02-25 07:21:3511#include "base/sha1.h"
tengs7df5c5c2015-02-25 07:21:3512
13namespace proximity_auth {
14
tengsfd6f252f2015-09-01 19:17:5915int64_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);
22
23 // Fold the digest into an int64 value. |digest.a| is a 16-byte array, so we
24 // sum the two 8-byte halves of the digest to create the hash.
25 int64_t hash = 0;
26 for (size_t i = 0; i < sizeof(digest.a); ++i) {
27 uint8_t byte = digest.a[i];
28 hash += static_cast<int64_t>(byte) << (i % sizeof(int64_t));
29 }
30
31 return hash;
32}
33
tengs7df5c5c2015-02-25 07:21:3534std::string CalculateDeviceUserId(const std::string& device_id,
35 const std::string& user_id) {
36 std::string device_user_id;
petere0807cf2015-11-20 14:46:2437 base::Base64UrlEncode(base::SHA1HashString(device_id + "|" + user_id),
38 base::Base64UrlEncodePolicy::INCLUDE_PADDING,
39 &device_user_id);
tengs7df5c5c2015-02-25 07:21:3540 return device_user_id;
41}
42
43} // namespace proximity_auth