Home | History | Annotate | Download | only in crypto

Lines Matching refs:RSAPrivateKey

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