HomeSort by relevance Sort by last modified time
    Searched refs:RsaKeyPair (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/remoting/base/
rsa_key_pair.h 19 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);
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::FromString(kTestRsaKeyPair)
    [all...]
rsa_key_pair.cc 21 RsaKeyPair::RsaKeyPair(scoped_ptr<crypto::RSAPrivateKey> key)
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(key.Pass())
    [all...]
  /external/chromium_org/remoting/protocol/
it2me_host_authenticator_factory.h 18 class RsaKeyPair;
28 scoped_refptr<RsaKeyPair> key_pair,
40 scoped_refptr<RsaKeyPair> key_pair_;
third_party_host_authenticator.h 16 class RsaKeyPair;
36 scoped_refptr<RsaKeyPair> key_pair,
53 scoped_refptr<RsaKeyPair> key_pair_;
me2me_host_authenticator_factory.h 21 class RsaKeyPair;
34 scoped_refptr<RsaKeyPair> key_pair,
43 scoped_refptr<RsaKeyPair> key_pair,
64 scoped_refptr<RsaKeyPair> key_pair_;
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_;
pairing_host_authenticator.h 14 class RsaKeyPair;
25 scoped_refptr<RsaKeyPair> key_pair,
51 scoped_refptr<RsaKeyPair> key_pair_;
token_validator.h 16 class RsaKeyPair;
ssl_hmac_channel_authenticator.h 25 class RsaKeyPair;
53 scoped_refptr<RsaKeyPair> key_pair,
87 scoped_refptr<RsaKeyPair> local_key_pair_;
v2_authenticator.h 19 class RsaKeyPair;
33 scoped_refptr<RsaKeyPair> key_pair,
62 scoped_refptr<RsaKeyPair> local_key_pair_;
it2me_host_authenticator_factory.cc 16 scoped_refptr<RsaKeyPair> key_pair,
authenticator_test_base.h 22 class RsaKeyPair;
59 scoped_refptr<RsaKeyPair> key_pair_;
negotiating_host_authenticator.cc 27 scoped_refptr<RsaKeyPair> key_pair)
36 scoped_refptr<RsaKeyPair> key_pair,
55 scoped_refptr<RsaKeyPair> key_pair,
me2me_host_authenticator_factory.cc 72 scoped_refptr<RsaKeyPair> key_pair,
93 scoped_refptr<RsaKeyPair> key_pair,
ssl_hmac_channel_authenticator_unittest.cc 68 key_pair_ = RsaKeyPair::FromString(key_base64);
126 scoped_refptr<RsaKeyPair> key_pair_;
  /external/chromium_org/remoting/host/
token_validator_factory_impl.h 28 scoped_refptr<RsaKeyPair> key_pair,
40 scoped_refptr<RsaKeyPair> key_pair_;
heartbeat_sender.h 28 class RsaKeyPair;
99 scoped_refptr<RsaKeyPair> key_pair,
132 scoped_refptr<RsaKeyPair> key_pair_;
host_status_sender.h 27 class RsaKeyPair;
60 scoped_refptr<RsaKeyPair> key_pair,
93 scoped_refptr<RsaKeyPair> key_pair_;
token_validator_factory_impl.cc 42 scoped_refptr<RsaKeyPair> key_pair,
55 scoped_refptr<RsaKeyPair> key_pair_;
62 scoped_refptr<RsaKeyPair> key_pair,
110 scoped_refptr<RsaKeyPair> key_pair,
register_support_host_request.h 50 scoped_refptr<RsaKeyPair> key_pair,
76 scoped_refptr<RsaKeyPair> key_pair_;
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);
register_support_host_request_unittest.cc 61 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair);
75 scoped_refptr<RsaKeyPair> key_pair_;
122 scoped_refptr<RsaKeyPair> key_pair = RsaKeyPair::FromString(kTestRsaKeyPair);
token_validator_factory_impl_unittest.cc 92 key_pair_ = RsaKeyPair::FromString(kTestRsaKeyPair);
132 scoped_refptr<RsaKeyPair> key_pair_;
  /external/chromium_org/remoting/host/it2me/
it2me_host.h 27 class RsaKeyPair;
146 scoped_refptr<RsaKeyPair> host_key_pair_;

Completed in 2389 milliseconds

1 2