mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
130 lines
3.6 KiB
C++
130 lines
3.6 KiB
C++
// 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 "internal/crypto/rsa_private_key.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <memory>
|
|
#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 "absl/types/span.h"
|
|
#include "internal/crypto/openssl_util.h"
|
|
#include <openssl/bn.h>
|
|
#include <openssl/bytestring.h>
|
|
#include <openssl/evp.h>
|
|
#include <openssl/mem.h>
|
|
#include <openssl/rsa.h>
|
|
|
|
namespace crypto {
|
|
|
|
// static
|
|
std::unique_ptr<RSAPrivateKey> RSAPrivateKey::Create(uint16_t num_bits) {
|
|
OpenSSLErrStackTracer err_tracer;
|
|
|
|
bssl::UniquePtr<RSA> rsa_key(RSA_new());
|
|
bssl::UniquePtr<BIGNUM> bn(BN_new());
|
|
if (!rsa_key.get() || !bn.get() || !BN_set_word(bn.get(), 65537L))
|
|
return nullptr;
|
|
|
|
if (!RSA_generate_key_ex(rsa_key.get(), num_bits, bn.get(), nullptr))
|
|
return nullptr;
|
|
|
|
std::unique_ptr<RSAPrivateKey> result(new RSAPrivateKey);
|
|
result->key_.reset(EVP_PKEY_new());
|
|
if (!result->key_ || !EVP_PKEY_set1_RSA(result->key_.get(), rsa_key.get()))
|
|
return nullptr;
|
|
|
|
return result;
|
|
}
|
|
|
|
// static
|
|
std::unique_ptr<RSAPrivateKey> RSAPrivateKey::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_RSA)
|
|
return nullptr;
|
|
|
|
std::unique_ptr<RSAPrivateKey> result(new RSAPrivateKey);
|
|
result->key_ = std::move(pkey);
|
|
return result;
|
|
}
|
|
|
|
// static
|
|
std::unique_ptr<RSAPrivateKey> RSAPrivateKey::CreateFromKey(EVP_PKEY* key) {
|
|
DCHECK(key);
|
|
if (EVP_PKEY_id(key) != EVP_PKEY_RSA) return nullptr;
|
|
std::unique_ptr<RSAPrivateKey> copy(new RSAPrivateKey);
|
|
copy->key_ = bssl::UpRef(key);
|
|
return copy;
|
|
}
|
|
|
|
RSAPrivateKey::RSAPrivateKey() = default;
|
|
|
|
RSAPrivateKey::~RSAPrivateKey() = default;
|
|
|
|
std::unique_ptr<RSAPrivateKey> RSAPrivateKey::Copy() const {
|
|
std::unique_ptr<RSAPrivateKey> copy(new RSAPrivateKey);
|
|
bssl::UniquePtr<RSA> rsa(EVP_PKEY_get1_RSA(key_.get()));
|
|
if (!rsa) return nullptr;
|
|
copy->key_.reset(EVP_PKEY_new());
|
|
if (!EVP_PKEY_set1_RSA(copy->key_.get(), rsa.get())) return nullptr;
|
|
return copy;
|
|
}
|
|
|
|
bool RSAPrivateKey::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 RSAPrivateKey::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;
|
|
}
|
|
|
|
} // namespace crypto
|