Lines Matching refs:RSAPrivateKey
75 std::unique_ptr<crypto::RSAPrivateKey> keypair1( in TEST()
76 crypto::RSAPrivateKey::Create(1024)); in TEST()
77 std::unique_ptr<crypto::RSAPrivateKey> keypair2( in TEST()
78 crypto::RSAPrivateKey::Create(2048)); in TEST()
92 std::unique_ptr<crypto::RSAPrivateKey> keypair3( in TEST()
93 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(privkey1)); in TEST()
94 std::unique_ptr<crypto::RSAPrivateKey> keypair4( in TEST()
95 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(privkey2)); in TEST()
117 std::unique_ptr<crypto::RSAPrivateKey> key( in TEST()
118 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input)); in TEST()
120 std::unique_ptr<crypto::RSAPrivateKey> key_copy(key->Copy()); in TEST()
135 std::unique_ptr<crypto::RSAPrivateKey> key( in TEST()
136 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input)); in TEST()
162 std::unique_ptr<crypto::RSAPrivateKey> key( in TEST()
163 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input)); in TEST()
191 std::unique_ptr<crypto::RSAPrivateKey> key( in TEST()
192 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input)); in TEST()
338 std::unique_ptr<crypto::RSAPrivateKey> keypair1( in TEST()
339 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input1)); in TEST()
340 std::unique_ptr<crypto::RSAPrivateKey> keypair2( in TEST()
341 crypto::RSAPrivateKey::CreateFromPrivateKeyInfo(input2)); in TEST()
359 std::unique_ptr<crypto::RSAPrivateKey> key_pair( in TEST()
360 crypto::RSAPrivateKey::Create(512)); in TEST()
363 std::unique_ptr<crypto::RSAPrivateKey> key_copy( in TEST()
364 crypto::RSAPrivateKey::CreateFromKey(key_pair->key())); in TEST()