Searched defs:RsaKeyPair (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/remoting/base/
H A Drsa_key_pair.h19 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 Drsa_key_pair.cc21 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...]

Completed in 67 milliseconds