summaryrefslogtreecommitdiff
path: root/chromium/third_party/nearby/src/cpp/platform/impl/windows/crypto_test.cc
blob: 5276a9e6f053762325f3066f18edd5bab70f3ae4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include "platform/api/crypto.h"

#include "gtest/gtest.h"

namespace location {
namespace nearby {
namespace {

TEST(CryptoTest, Md5Hash) {
  const std::string input{"Hello Nearby Connection"};
  const ByteArray expected_md5(
      "\x94\xa3\xbe\xc1\x8d\x30\xe3\x24\x5f\xa1\x4c\xee\xe7\x52\xe9\x36");
  ByteArray md5_hash = Crypto::Md5(input);
  EXPECT_EQ(md5_hash, expected_md5);
}

TEST(CryptoTest, Md5HashOnEmptyInput) {
  EXPECT_EQ(Crypto::Md5(""), ByteArray{});
}

TEST(CryptoTest, Sha256Hash) {
  const std::string input("Hello Nearby Connection");
  const ByteArray expected_sha256(
      "\xb4\x24\xd3\xc0\x58\x12\x9a\x42\xcb\x81\xa0\x4b\x6e\x9d\xfe\x45\x45\x9f"
      "\x15\xf7\xc0\xa9\x32\x2f\xfb\x9\x45\xf0\xf9\xbe\x75\xb");
  ByteArray sha256_hash = Crypto::Sha256(input);
  EXPECT_EQ(sha256_hash, expected_sha256);
}

TEST(CryptoTest, Sha256HashOnEmptyInput) {
  EXPECT_EQ(Crypto::Sha256(""), ByteArray{});
}

}  // namespace
}  // namespace nearby
}  // namespace location