Home
last modified time | relevance | path

Searched refs:RsaKeyPair (Results 1 – 25 of 40) sorted by relevance

12

/external/chromium_org/remoting/base/
Drsa_key_pair_unittest.cc58 scoped_refptr<RsaKeyPair> exported_key = RsaKeyPair::FromString( in TEST_F()
60 scoped_refptr<RsaKeyPair> imported_key = RsaKeyPair::FromString( in TEST_F()
69 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair); in TEST_F()
77 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::Generate(); in TEST_F()
86 scoped_refptr<RsaKeyPair> key_pair1 = RsaKeyPair::FromString(kTestRsaKeyPair); in TEST_F()
87 scoped_refptr<RsaKeyPair> key_pair2 = RsaKeyPair::FromString( in TEST_F()
Drsa_key_pair.cc21 RsaKeyPair::RsaKeyPair(scoped_ptr<crypto::RSAPrivateKey> key) in RsaKeyPair() function in remoting::RsaKeyPair
26 RsaKeyPair::~RsaKeyPair() {} in ~RsaKeyPair()
29 scoped_refptr<RsaKeyPair> RsaKeyPair::Generate() { in Generate()
35 return new RsaKeyPair(key.Pass()); in Generate()
39 scoped_refptr<RsaKeyPair> RsaKeyPair::FromString( in FromString()
55 return new RsaKeyPair(key.Pass()); in FromString()
58 std::string RsaKeyPair::ToString() const { in ToString()
70 std::string RsaKeyPair::GetPublicKey() const { in GetPublicKey()
79 std::string RsaKeyPair::SignMessage(const std::string& message) const { in SignMessage()
93 std::string RsaKeyPair::GenerateCertificate() const { in GenerateCertificate()
Drsa_key_pair.h19 class RsaKeyPair : public base::RefCountedThreadSafe<RsaKeyPair> {
22 static scoped_refptr<RsaKeyPair> Generate();
25 static scoped_refptr<RsaKeyPair> FromString(const std::string& key_base64);
44 friend class base::RefCountedThreadSafe<RsaKeyPair>;
45 RsaKeyPair(scoped_ptr<crypto::RSAPrivateKey> key);
46 virtual ~RsaKeyPair();
50 DISALLOW_COPY_AND_ASSIGN(RsaKeyPair);
/external/chromium_org/remoting/protocol/
Dnegotiating_host_authenticator.h22 class RsaKeyPair; variable
37 scoped_refptr<RsaKeyPair> key_pair,
45 scoped_refptr<RsaKeyPair> key_pair,
56 scoped_refptr<RsaKeyPair> key_pair);
66 scoped_refptr<RsaKeyPair> local_key_pair_;
Dme2me_host_authenticator_factory.h21 class RsaKeyPair; variable
34 scoped_refptr<RsaKeyPair> key_pair,
43 scoped_refptr<RsaKeyPair> key_pair,
64 scoped_refptr<RsaKeyPair> key_pair_;
Dit2me_host_authenticator_factory.h18 class RsaKeyPair; variable
28 scoped_refptr<RsaKeyPair> key_pair,
40 scoped_refptr<RsaKeyPair> key_pair_;
Dthird_party_host_authenticator.h16 class RsaKeyPair; variable
36 scoped_refptr<RsaKeyPair> key_pair,
53 scoped_refptr<RsaKeyPair> key_pair_;
Dpairing_host_authenticator.h14 class RsaKeyPair; variable
25 scoped_refptr<RsaKeyPair> key_pair,
51 scoped_refptr<RsaKeyPair> key_pair_;
Dv2_authenticator.h19 class RsaKeyPair; variable
33 scoped_refptr<RsaKeyPair> key_pair,
62 scoped_refptr<RsaKeyPair> local_key_pair_;
Dssl_hmac_channel_authenticator.h25 class RsaKeyPair; variable
53 scoped_refptr<RsaKeyPair> key_pair,
88 scoped_refptr<RsaKeyPair> local_key_pair_;
Dauthenticator_test_base.h21 class RsaKeyPair; variable
58 scoped_refptr<RsaKeyPair> key_pair_;
Dnegotiating_host_authenticator.cc27 scoped_refptr<RsaKeyPair> key_pair) in NegotiatingHostAuthenticator()
36 scoped_refptr<RsaKeyPair> key_pair, in CreateWithSharedSecret()
55 scoped_refptr<RsaKeyPair> key_pair, in CreateWithThirdPartyAuth()
Dme2me_host_authenticator_factory.cc72 scoped_refptr<RsaKeyPair> key_pair, in CreateWithSharedSecret()
93 scoped_refptr<RsaKeyPair> key_pair, in CreateWithThirdPartyAuth()
Dssl_hmac_channel_authenticator_unittest.cc68 key_pair_ = RsaKeyPair::FromString(key_base64); in SetUp()
132 scoped_refptr<RsaKeyPair> key_pair_;
Dit2me_host_authenticator_factory.cc16 scoped_refptr<RsaKeyPair> key_pair, in It2MeHostAuthenticatorFactory()
Dtoken_validator.h16 class RsaKeyPair; variable
/external/chromium_org/remoting/host/
Dtoken_validator_factory_impl.cc42 scoped_refptr<RsaKeyPair> key_pair,
55 scoped_refptr<RsaKeyPair> key_pair_;
62 scoped_refptr<RsaKeyPair> key_pair, in TokenValidatorImpl()
110 scoped_refptr<RsaKeyPair> key_pair, in TokenValidatorFactoryImpl()
Dhost_status_sender.h27 class RsaKeyPair; variable
60 scoped_refptr<RsaKeyPair> key_pair,
93 scoped_refptr<RsaKeyPair> key_pair_;
Dheartbeat_sender.h28 class RsaKeyPair; variable
99 scoped_refptr<RsaKeyPair> key_pair,
132 scoped_refptr<RsaKeyPair> key_pair_;
Dtoken_validator_factory_impl.h28 scoped_refptr<RsaKeyPair> key_pair,
40 scoped_refptr<RsaKeyPair> key_pair_;
Dregister_support_host_request_unittest.cc61 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair); in SetUp()
75 scoped_refptr<RsaKeyPair> key_pair_;
122 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair); in TEST_F()
Dhost_status_sender_unittest.cc45 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair); in SetUp()
63 scoped_refptr<RsaKeyPair> key_pair_;
188 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair); in ValidateSignature()
Dregister_support_host_request.h50 scoped_refptr<RsaKeyPair> key_pair,
76 scoped_refptr<RsaKeyPair> key_pair_;
Dheartbeat_sender_unittest.cc69 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair); in SetUp()
97 scoped_refptr<RsaKeyPair> key_pair_;
252 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair); in ValidateHeartbeatStanza()
/external/chromium_org/remoting/host/it2me/
Dit2me_host.h28 class RsaKeyPair; variable
145 scoped_refptr<RsaKeyPair> host_key_pair_;

12