forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscoped_mock_unexportable_key_provider.cc
127 lines (103 loc) · 4.13 KB
/
scoped_mock_unexportable_key_provider.cc
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Copyright (c) 2021 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.
#include <vector>
#include "crypto/scoped_mock_unexportable_key_provider.h"
#include "crypto/sha2.h"
#include "crypto/signature_verifier.h"
#include "crypto/unexportable_key.h"
#include "third_party/boringssl/src/include/openssl/bytestring.h"
#include "third_party/boringssl/src/include/openssl/ec.h"
#include "third_party/boringssl/src/include/openssl/ec_key.h"
#include "third_party/boringssl/src/include/openssl/ecdsa.h"
#include "third_party/boringssl/src/include/openssl/evp.h"
#include "third_party/boringssl/src/include/openssl/obj.h"
namespace crypto {
namespace {
std::vector<uint8_t> CBBToVector(const CBB* cbb) {
return std::vector<uint8_t>(CBB_data(cbb), CBB_data(cbb) + CBB_len(cbb));
}
class SoftwareECDSA : public UnexportableSigningKey {
public:
explicit SoftwareECDSA(bssl::UniquePtr<EC_KEY> key) : key_(std::move(key)) {}
~SoftwareECDSA() override = default;
SignatureVerifier::SignatureAlgorithm Algorithm() const override {
return SignatureVerifier::SignatureAlgorithm::ECDSA_SHA256;
}
std::vector<uint8_t> GetSubjectPublicKeyInfo() const override {
bssl::UniquePtr<EVP_PKEY> pkey(EVP_PKEY_new());
CHECK(EVP_PKEY_set1_EC_KEY(pkey.get(), key_.get()));
bssl::ScopedCBB cbb;
CHECK(CBB_init(cbb.get(), /*initial_capacity=*/128) &&
EVP_marshal_public_key(cbb.get(), pkey.get()));
return CBBToVector(cbb.get());
}
std::vector<uint8_t> GetWrappedKey() const override {
bssl::ScopedCBB cbb;
CHECK(
CBB_init(cbb.get(), /*initial_capacity=*/128) &&
EC_KEY_marshal_private_key(cbb.get(), key_.get(),
EC_PKEY_NO_PARAMETERS | EC_PKEY_NO_PUBKEY));
return CBBToVector(cbb.get());
}
absl::optional<std::vector<uint8_t>> SignSlowly(
base::span<const uint8_t> data) override {
std::vector<uint8_t> ret(ECDSA_size(key_.get()));
std::array<uint8_t, kSHA256Length> digest = SHA256Hash(data);
unsigned int ret_size;
CHECK(ECDSA_sign(0, digest.data(), digest.size(), ret.data(), &ret_size,
key_.get()));
ret.resize(ret_size);
return ret;
}
private:
bssl::UniquePtr<EC_KEY> key_;
};
class SoftwareProvider : public UnexportableKeyProvider {
public:
~SoftwareProvider() override = default;
absl::optional<SignatureVerifier::SignatureAlgorithm> SelectAlgorithm(
base::span<const SignatureVerifier::SignatureAlgorithm>
acceptable_algorithms) override {
for (auto algo : acceptable_algorithms) {
if (algo == SignatureVerifier::SignatureAlgorithm::ECDSA_SHA256) {
return algo;
}
}
return absl::nullopt;
}
std::unique_ptr<UnexportableSigningKey> GenerateSigningKeySlowly(
base::span<const SignatureVerifier::SignatureAlgorithm>
acceptable_algorithms) override {
if (!SelectAlgorithm(acceptable_algorithms)) {
return nullptr;
}
bssl::UniquePtr<EC_KEY> key(EC_KEY_new_by_curve_name(NID_X9_62_prime256v1));
CHECK(EC_KEY_generate_key(key.get()));
return std::make_unique<SoftwareECDSA>(std::move(key));
}
std::unique_ptr<UnexportableSigningKey> FromWrappedSigningKeySlowly(
base::span<const uint8_t> wrapped_key) override {
bssl::UniquePtr<EC_GROUP> p256(
EC_GROUP_new_by_curve_name(NID_X9_62_prime256v1));
CBS cbs;
CBS_init(&cbs, wrapped_key.data(), wrapped_key.size());
bssl::UniquePtr<EC_KEY> key(EC_KEY_parse_private_key(&cbs, p256.get()));
if (!key || CBS_len(&cbs) != 0) {
return nullptr;
}
return std::make_unique<SoftwareECDSA>(std::move(key));
}
};
std::unique_ptr<UnexportableKeyProvider> GetUnexportableKeyProviderMock() {
return std::make_unique<SoftwareProvider>();
}
} // namespace
ScopedMockUnexportableKeyProvider::ScopedMockUnexportableKeyProvider() {
internal::SetUnexportableKeyProviderForTesting(
GetUnexportableKeyProviderMock);
}
ScopedMockUnexportableKeyProvider::~ScopedMockUnexportableKeyProvider() {
internal::SetUnexportableKeyProviderForTesting(nullptr);
}
} // namespace crypto