Home | History | Annotate | Download | only in crypto

Lines Matching refs:RSAPrivateKey

74   scoped_ptr<crypto::RSAPrivateKey> keypair1(
75 crypto::RSAPrivateKey::Create(1024));
76 scoped_ptr<crypto::RSAPrivateKey> keypair2(
77 crypto::RSAPrivateKey::Create(2048));
91 scoped_ptr<crypto::RSAPrivateKey> keypair3(
92 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(privkey1));
93 scoped_ptr<crypto::RSAPrivateKey> keypair4(
94 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(privkey2));
116 scoped_ptr<crypto::RSAPrivateKey> key(
117 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input));
119 scoped_ptr<crypto::RSAPrivateKey> key_copy(key->Copy());
134 scoped_ptr<crypto::RSAPrivateKey> key(
135 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input));
161 scoped_ptr<crypto::RSAPrivateKey> key(
162 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input));
190 scoped_ptr<crypto::RSAPrivateKey> key(
191 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input));
209 // * RSAPrivateKey::CreateFromPrivateKeyInfo would return null because the
337 scoped_ptr<crypto::RSAPrivateKey> keypair1(
338 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input1));
339 scoped_ptr<crypto::RSAPrivateKey> keypair2(
340 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input2));
358 scoped_ptr<crypto::RSAPrivateKey> key_pair(
359 crypto::RSAPrivateKey::Create(512));
362 scoped_ptr<crypto::RSAPrivateKey> key_copy(
363 crypto::RSAPrivateKey::CreateFromKey(key_pair->key()));