mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
190 lines
5.6 KiB
C++
190 lines
5.6 KiB
C++
#include "internal/crypto/ec_private_key.h"
|
|
|
|
// 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 <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include <array>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#ifdef NEARBY_CHROMIUM
|
|
#include "base/check.h"
|
|
#elif defined(NEARBY_SWIFTPM)
|
|
#include "internal/platform/logging.h"
|
|
#else
|
|
#include "absl/log/check.h" // nogncheck
|
|
#endif
|
|
|
|
#include "internal/crypto/openssl_util.h"
|
|
#include <openssl/bn.h>
|
|
#include <openssl/bytestring.h>
|
|
#include <openssl/ec.h>
|
|
#include <openssl/ec_key.h>
|
|
#include <openssl/evp.h>
|
|
#include <openssl/mem.h>
|
|
#include <openssl/pkcs8.h>
|
|
|
|
namespace crypto {
|
|
|
|
ECPrivateKey::~ECPrivateKey() = default;
|
|
|
|
// static
|
|
std::unique_ptr<ECPrivateKey> ECPrivateKey::Create() {
|
|
OpenSSLErrStackTracer err_tracer;
|
|
|
|
bssl::UniquePtr<EC_KEY> ec_key(
|
|
EC_KEY_new_by_curve_name(NID_X9_62_prime256v1));
|
|
if (!ec_key || !EC_KEY_generate_key(ec_key.get())) return nullptr;
|
|
|
|
std::unique_ptr<ECPrivateKey> result(new ECPrivateKey());
|
|
result->key_.reset(EVP_PKEY_new());
|
|
if (!result->key_ || !EVP_PKEY_set1_EC_KEY(result->key_.get(), ec_key.get()))
|
|
return nullptr;
|
|
|
|
CHECK_EQ(EVP_PKEY_EC, EVP_PKEY_id(result->key_.get()));
|
|
return result;
|
|
}
|
|
|
|
// static
|
|
std::unique_ptr<ECPrivateKey> ECPrivateKey::CreateFromPrivateKeyInfo(
|
|
absl::Span<const uint8_t> input) {
|
|
OpenSSLErrStackTracer err_tracer;
|
|
|
|
CBS cbs;
|
|
CBS_init(&cbs, input.data(), input.size());
|
|
bssl::UniquePtr<EVP_PKEY> pkey(EVP_parse_private_key(&cbs));
|
|
if (!pkey || CBS_len(&cbs) != 0 || EVP_PKEY_id(pkey.get()) != EVP_PKEY_EC)
|
|
return nullptr;
|
|
|
|
std::unique_ptr<ECPrivateKey> result(new ECPrivateKey());
|
|
result->key_ = std::move(pkey);
|
|
return result;
|
|
}
|
|
|
|
// static
|
|
std::unique_ptr<ECPrivateKey> ECPrivateKey::CreateFromEncryptedPrivateKeyInfo(
|
|
absl::Span<const uint8_t> encrypted_private_key_info) {
|
|
OpenSSLErrStackTracer err_tracer;
|
|
|
|
CBS cbs;
|
|
CBS_init(&cbs, encrypted_private_key_info.data(),
|
|
encrypted_private_key_info.size());
|
|
bssl::UniquePtr<EVP_PKEY> pkey(
|
|
PKCS8_parse_encrypted_private_key(&cbs, "", 0));
|
|
|
|
// Hack for reading keys generated by an older version of the OpenSSL code.
|
|
// Some implementations encode the empty password as "\0\0" (passwords are
|
|
// normally encoded in big-endian UCS-2 with a NUL terminator) and some
|
|
// encode as the empty string. PKCS8_parse_encrypted_private_key
|
|
// distinguishes the two by whether the password is nullptr.
|
|
if (!pkey) {
|
|
CBS_init(&cbs, encrypted_private_key_info.data(),
|
|
encrypted_private_key_info.size());
|
|
pkey.reset(PKCS8_parse_encrypted_private_key(&cbs, nullptr, 0));
|
|
}
|
|
|
|
if (!pkey || CBS_len(&cbs) != 0 || EVP_PKEY_id(pkey.get()) != EVP_PKEY_EC)
|
|
return nullptr;
|
|
|
|
std::unique_ptr<ECPrivateKey> result(new ECPrivateKey());
|
|
result->key_ = std::move(pkey);
|
|
return result;
|
|
}
|
|
|
|
std::unique_ptr<ECPrivateKey> ECPrivateKey::Copy() const {
|
|
std::unique_ptr<ECPrivateKey> copy(new ECPrivateKey());
|
|
copy->key_ = bssl::UpRef(key_);
|
|
return copy;
|
|
}
|
|
|
|
bool ECPrivateKey::ExportPrivateKey(std::vector<uint8_t>* output) const {
|
|
OpenSSLErrStackTracer err_tracer;
|
|
uint8_t* der;
|
|
size_t der_len;
|
|
bssl::ScopedCBB cbb;
|
|
if (!CBB_init(cbb.get(), 0) ||
|
|
!EVP_marshal_private_key(cbb.get(), key_.get()) ||
|
|
!CBB_finish(cbb.get(), &der, &der_len)) {
|
|
return false;
|
|
}
|
|
output->assign(der, der + der_len);
|
|
OPENSSL_free(der);
|
|
return true;
|
|
}
|
|
|
|
bool ECPrivateKey::ExportEncryptedPrivateKey(
|
|
std::vector<uint8_t>* output) const {
|
|
OpenSSLErrStackTracer err_tracer;
|
|
|
|
// Encrypt the object.
|
|
// NOTE: NSS uses SEC_OID_PKCS12_V2_PBE_WITH_SHA1_AND_3KEY_TRIPLE_DES_CBC
|
|
// so use NID_pbe_WithSHA1And3_Key_TripleDES_CBC which should be the OpenSSL
|
|
// equivalent.
|
|
uint8_t* der;
|
|
size_t der_len;
|
|
bssl::ScopedCBB cbb;
|
|
if (!CBB_init(cbb.get(), 0) ||
|
|
!PKCS8_marshal_encrypted_private_key(
|
|
cbb.get(), NID_pbe_WithSHA1And3_Key_TripleDES_CBC,
|
|
nullptr /* cipher */, nullptr /* no password */, 0 /* pass_len */,
|
|
nullptr /* salt */, 0 /* salt_len */, 1 /* iterations */,
|
|
key_.get()) ||
|
|
!CBB_finish(cbb.get(), &der, &der_len)) {
|
|
return false;
|
|
}
|
|
output->assign(der, der + der_len);
|
|
OPENSSL_free(der);
|
|
return true;
|
|
}
|
|
|
|
bool ECPrivateKey::ExportPublicKey(std::vector<uint8_t>* output) const {
|
|
OpenSSLErrStackTracer err_tracer;
|
|
uint8_t* der;
|
|
size_t der_len;
|
|
bssl::ScopedCBB cbb;
|
|
if (!CBB_init(cbb.get(), 0) ||
|
|
!EVP_marshal_public_key(cbb.get(), key_.get()) ||
|
|
!CBB_finish(cbb.get(), &der, &der_len)) {
|
|
return false;
|
|
}
|
|
output->assign(der, der + der_len);
|
|
OPENSSL_free(der);
|
|
return true;
|
|
}
|
|
|
|
bool ECPrivateKey::ExportRawPublicKey(std::string* output) const {
|
|
OpenSSLErrStackTracer err_tracer;
|
|
|
|
std::array<uint8_t, 65> buf;
|
|
EC_KEY* ec_key = EVP_PKEY_get0_EC_KEY(key_.get());
|
|
if (!EC_POINT_point2oct(EC_KEY_get0_group(ec_key),
|
|
EC_KEY_get0_public_key(ec_key),
|
|
POINT_CONVERSION_UNCOMPRESSED, buf.data(), buf.size(),
|
|
/*ctx=*/nullptr)) {
|
|
return false;
|
|
}
|
|
|
|
output->assign(buf.begin(), buf.end());
|
|
return true;
|
|
}
|
|
|
|
ECPrivateKey::ECPrivateKey() = default;
|
|
|
|
} // namespace crypto
|