Lines Matching refs:RSAPrivateKey
44 RSAPrivateKey::~RSAPrivateKey() { in ~RSAPrivateKey()
52 RSAPrivateKey* RSAPrivateKey::Create(uint16_t num_bits) { in Create()
68 RSAPrivateKey* rsa_key = new RSAPrivateKey; in Create()
75 RSAPrivateKey* RSAPrivateKey::CreateFromPrivateKeyInfo( in CreateFromPrivateKeyInfo()
88 return RSAPrivateKey::CreateFromKey(key.get()); in CreateFromPrivateKeyInfo()
92 RSAPrivateKey* RSAPrivateKey::CreateFromKey(SECKEYPrivateKey* key) { in CreateFromKey()
96 RSAPrivateKey* copy = new RSAPrivateKey(); in CreateFromKey()
107 RSAPrivateKey* RSAPrivateKey::Copy() const { in Copy()
108 RSAPrivateKey* copy = new RSAPrivateKey(); in Copy()
114 bool RSAPrivateKey::ExportPrivateKey(std::vector<uint8_t>* output) const { in ExportPrivateKey()
136 bool RSAPrivateKey::ExportPublicKey(std::vector<uint8_t>* output) const { in ExportPublicKey()
147 RSAPrivateKey::RSAPrivateKey() : key_(NULL), public_key_(NULL) { in RSAPrivateKey() function in crypto::RSAPrivateKey