/external/chromium_org/remoting/base/ |
H A D | rsa_key_pair.h | 19 class RsaKeyPair : public base::RefCountedThreadSafe<RsaKeyPair> { class in namespace:remoting 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);
|
H A D | rsa_key_pair_unittest.cc | 58 scoped_refptr<RsaKeyPair> exported_key = RsaKeyPair::FromString( 60 scoped_refptr<RsaKeyPair> imported_key = RsaKeyPair::FromString( 69 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair); 77 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::Generate(); 86 scoped_refptr<RsaKeyPair> key_pair1 = RsaKeyPair [all...] |
H A D | rsa_key_pair.cc | 21 RsaKeyPair::RsaKeyPair(scoped_ptr<crypto::RSAPrivateKey> key) function in class:remoting::RsaKeyPair 26 RsaKeyPair::~RsaKeyPair() {} 29 scoped_refptr<RsaKeyPair> RsaKeyPair::Generate() { 35 return new RsaKeyPair(key.Pass()); 39 scoped_refptr<RsaKeyPair> RsaKeyPair::FromString( 55 return new RsaKeyPair(ke [all...] |
/external/chromium_org/remoting/protocol/ |
H A D | it2me_host_authenticator_factory.h | 18 class RsaKeyPair; 28 scoped_refptr<RsaKeyPair> key_pair, 40 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | negotiating_host_authenticator.h | 22 class RsaKeyPair; 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_;
|
H A D | me2me_host_authenticator_factory.h | 20 class RsaKeyPair; 33 scoped_refptr<RsaKeyPair> key_pair, 42 scoped_refptr<RsaKeyPair> key_pair, 64 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | pairing_host_authenticator.h | 14 class RsaKeyPair; 25 scoped_refptr<RsaKeyPair> key_pair, 51 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | third_party_host_authenticator.h | 17 class RsaKeyPair; 73 scoped_refptr<RsaKeyPair> key_pair, 90 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | v2_authenticator.h | 19 class RsaKeyPair; 33 scoped_refptr<RsaKeyPair> key_pair, 61 scoped_refptr<RsaKeyPair> local_key_pair_;
|
H A D | ssl_hmac_channel_authenticator.h | 26 class RsaKeyPair; 54 scoped_refptr<RsaKeyPair> key_pair, 88 scoped_refptr<RsaKeyPair> local_key_pair_;
|
H A D | it2me_host_authenticator_factory.cc | 16 scoped_refptr<RsaKeyPair> key_pair,
|
H A D | authenticator_test_base.h | 22 class RsaKeyPair; 57 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | negotiating_host_authenticator.cc | 26 scoped_refptr<RsaKeyPair> key_pair) 35 scoped_refptr<RsaKeyPair> key_pair, 54 scoped_refptr<RsaKeyPair> key_pair,
|
H A D | me2me_host_authenticator_factory.cc | 67 scoped_refptr<RsaKeyPair> key_pair, 88 scoped_refptr<RsaKeyPair> key_pair,
|
H A D | ssl_hmac_channel_authenticator_unittest.cc | 68 key_pair_ = RsaKeyPair::FromString(key_base64); 126 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | pairing_host_authenticator.cc | 21 scoped_refptr<RsaKeyPair> key_pair,
|
/external/chromium_org/remoting/host/ |
H A D | token_validator_factory_impl.h | 29 scoped_refptr<RsaKeyPair> key_pair, 42 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | host_status_sender.h | 27 class RsaKeyPair; 60 scoped_refptr<RsaKeyPair> key_pair, 93 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | heartbeat_sender.h | 28 class RsaKeyPair; 99 scoped_refptr<RsaKeyPair> key_pair, 132 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | register_support_host_request.h | 50 scoped_refptr<RsaKeyPair> key_pair, 76 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | host_status_sender_unittest.cc | 45 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair); 63 scoped_refptr<RsaKeyPair> key_pair_; 188 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair);
|
H A D | register_support_host_request_unittest.cc | 60 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair); 74 scoped_refptr<RsaKeyPair> key_pair_; 121 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair);
|
H A D | token_validator_factory_impl.cc | 42 scoped_refptr<RsaKeyPair> key_pair, 158 scoped_refptr<RsaKeyPair> key_pair_; 169 scoped_refptr<RsaKeyPair> key_pair,
|
H A D | token_validator_factory_impl_unittest.cc | 60 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair); 87 scoped_refptr<RsaKeyPair> key_pair_;
|
H A D | heartbeat_sender_unittest.cc | 68 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair); 96 scoped_refptr<RsaKeyPair> key_pair_; 251 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair);
|