// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UTIL_CRYPTO_RSA_PRIVATE_KEY_H_ #define UTIL_CRYPTO_RSA_PRIVATE_KEY_H_ #include <openssl/base.h> #include <openssl/evp.h> #include <stddef.h> #include <stdint.h> #include <memory> #include <vector> #include "platform/base/error.h" #include "platform/base/macros.h" namespace openscreen { // Encapsulates an RSA private key. Can be used to generate new keys, export // keys to other formats, or to extract a public key. class RSAPrivateKey { … }; } // namespace openscreen #endif // UTIL_CRYPTO_RSA_PRIVATE_KEY_H_