Lines Matching refs:RSAPrivateKey
23 std::unique_ptr<RSAPrivateKey> RSAPrivateKey::Create(uint16_t num_bits) { in Create()
34 std::unique_ptr<RSAPrivateKey> result(new RSAPrivateKey); in Create()
43 std::unique_ptr<RSAPrivateKey> RSAPrivateKey::CreateFromPrivateKeyInfo( in CreateFromPrivateKeyInfo()
53 std::unique_ptr<RSAPrivateKey> result(new RSAPrivateKey); in CreateFromPrivateKeyInfo()
59 std::unique_ptr<RSAPrivateKey> RSAPrivateKey::CreateFromKey(EVP_PKEY* key) { in CreateFromKey()
63 std::unique_ptr<RSAPrivateKey> copy(new RSAPrivateKey); in CreateFromKey()
68 RSAPrivateKey::RSAPrivateKey() = default;
70 RSAPrivateKey::~RSAPrivateKey() = default;
72 std::unique_ptr<RSAPrivateKey> RSAPrivateKey::Copy() const { in Copy()
73 std::unique_ptr<RSAPrivateKey> copy(new RSAPrivateKey); in Copy()
83 bool RSAPrivateKey::ExportPrivateKey(std::vector<uint8_t>* output) const { in ExportPrivateKey()
98 bool RSAPrivateKey::ExportPublicKey(std::vector<uint8_t>* output) const { in ExportPublicKey()