OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RsaKeyPair
(Results
1 - 2
of
2
) sorted by null
/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.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
...]
Completed in 246 milliseconds