Lines Matching refs:RSAPrivateKey
57 RSAPrivateKey* RSAPrivateKey::Create(uint16_t num_bits) { in Create()
68 scoped_ptr<RSAPrivateKey> result(new RSAPrivateKey); in Create()
77 RSAPrivateKey* RSAPrivateKey::CreateFromPrivateKeyInfo( in CreateFromPrivateKeyInfo()
93 scoped_ptr<RSAPrivateKey> result(new RSAPrivateKey); in CreateFromPrivateKeyInfo()
102 RSAPrivateKey* RSAPrivateKey::CreateFromKey(EVP_PKEY* key) { in CreateFromKey()
106 RSAPrivateKey* copy = new RSAPrivateKey(); in CreateFromKey()
111 RSAPrivateKey::RSAPrivateKey() in RSAPrivateKey() function in crypto::RSAPrivateKey
115 RSAPrivateKey::~RSAPrivateKey() { in ~RSAPrivateKey()
120 RSAPrivateKey* RSAPrivateKey::Copy() const { in Copy()
121 scoped_ptr<RSAPrivateKey> copy(new RSAPrivateKey()); in Copy()
131 bool RSAPrivateKey::ExportPrivateKey(std::vector<uint8_t>* output) const { in ExportPrivateKey()
135 bool RSAPrivateKey::ExportPublicKey(std::vector<uint8_t>* output) const { in ExportPublicKey()