OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NSSIdentity
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/base/
nssidentity.h
102
class
NSSIdentity
: public SSLIdentity {
104
static
NSSIdentity
* Generate(const std::string& common_name);
107
virtual ~
NSSIdentity
() {
111
virtual
NSSIdentity
* GetReference() const;
117
NSSIdentity
(NSSKeyPair* keypair, NSSCertificate* cert) :
123
DISALLOW_EVIL_CONSTRUCTORS(
NSSIdentity
);
nssidentity.cc
35
#include "talk/base/
nssidentity
.h"
205
NSSIdentity
*
NSSIdentity
::Generate(const std::string &common_name) {
209
NSSIdentity
*identity = NULL;
298
identity = new
NSSIdentity
(keypair, new NSSCertificate(certificate));
314
SSLIdentity*
NSSIdentity
::FromPEMStrings(const std::string& private_key,
359
return new
NSSIdentity
(keypair.release(), cert.release());
362
NSSIdentity
*
NSSIdentity
::GetReference() const {
373
return new
NSSIdentity
(keypair, certificate)
[
all
...]
sslidentity.cc
49
#include "talk/base/
nssidentity
.h"
145
return
NSSIdentity
::Generate(common_name);
150
return
NSSIdentity
::FromPEMStrings(private_key, certificate);
nssstreamadapter.cc
55
#include "talk/base/
nssidentity
.h"
481
NSSIdentity
*identity;
484
identity = static_cast<
NSSIdentity
*>(identity_.get());
850
NSSIdentity
*identity = static_cast<
NSSIdentity
*>(stream->identity_.get());
Completed in 54 milliseconds