OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SSLCertificate
(Results
1 - 25
of
31
) sorted by null
1
2
/external/webrtc/webrtc/base/
sslidentity.h
26
// Forward declaration due to circular dependency with
SSLCertificate
.
34
// The
SSLCertificate
object is pretty much immutable once created.
37
class
SSLCertificate
{
45
static
SSLCertificate
* FromPEMString(const std::string& pem_string);
46
virtual ~
SSLCertificate
() {}
48
// Returns a new
SSLCertificate
object instance wrapping the same
51
virtual
SSLCertificate
* GetReference() const = 0;
80
//
SSLCertificate
pointers.
83
// These constructors copy the provided
SSLCertificate
(s), so the caller
85
explicit SSLCertChain(const std::vector<
SSLCertificate
*>& certs)
[
all
...]
sslfingerprint.h
22
class
SSLCertificate
;
29
const rtc::
SSLCertificate
* cert);
rtccertificate.h
23
//
SSLCertificate
and WebRTC usage. Takes ownership of some lower level objects,
35
const
SSLCertificate
& ssl_certificate() const;
48
// The SSLIdentity is the owner of the
SSLCertificate
. To protect our
rtccertificate.cc
42
const
SSLCertificate
& RTCCertificate::ssl_certificate() const {
sslstreamadapterhelper.h
44
bool GetPeerCertificate(
SSLCertificate
** cert) const override;
96
scoped_ptr<
SSLCertificate
> peer_certificate_;
fakesslidentity.h
23
class FakeSSLCertificate : public rtc::
SSLCertificate
{
74
std::vector<
SSLCertificate
*> new_certs(certs_.size());
85
static void DeleteCert(
SSLCertificate
* cert) { delete cert; }
sslidentity.cc
141
SSLCertChain::SSLCertChain(const std::vector<
SSLCertificate
*>& certs) {
147
SSLCertChain::SSLCertChain(const
SSLCertificate
* cert) {
157
SSLCertificate
*
SSLCertificate
::FromPEMString(const std::string& pem_string) {
sslstreamadapter.h
158
virtual bool GetPeerCertificate(
SSLCertificate
** cert) const = 0;
opensslidentity.h
53
class OpenSSLCertificate : public
SSLCertificate
{
sslfingerprint.cc
32
const std::string& algorithm, const rtc::
SSLCertificate
* cert) {
opensslstreamadapter.h
72
bool GetPeerCertificate(
SSLCertificate
** cert) const override;
sslstreamadapterhelper.cc
79
bool SSLStreamAdapterHelper::GetPeerCertificate(
SSLCertificate
** cert) const {
sslidentity_unittest.cc
83
test_cert_.reset(rtc::
SSLCertificate
::FromPEMString(kTestCertificate));
181
rtc::scoped_ptr<rtc::
SSLCertificate
> test_cert_;
sslstreamadapter_unittest.cc
477
bool GetPeerCertificate(bool client, rtc::
SSLCertificate
** cert) {
1033
rtc::scoped_ptr<rtc::
SSLCertificate
> client_peer_cert;
1037
rtc::scoped_ptr<rtc::
SSLCertificate
> server_peer_cert;
[
all
...]
/external/webrtc/talk/app/webrtc/
statscollector.h
113
const rtc::
SSLCertificate
* cert, const StatsReport* issuer);
122
StatsReport* AddCertificateReports(const rtc::
SSLCertificate
* cert);
statscollector.cc
536
const rtc::
SSLCertificate
* cert, const StatsReport* issuer) {
541
//
SSLCertificate
::Equals() method to detect certificate changes.
551
//
SSLCertificate
::GetSignatureDigestAlgorithm is not supported by the
552
// implementation of
SSLCertificate
::ComputeDigest. This currently happens
579
const rtc::
SSLCertificate
* cert) {
596
const rtc::
SSLCertificate
& cert_i = chain->Get(i);
717
rtc::scoped_ptr<rtc::
SSLCertificate
> cert;
[
all
...]
webrtcsession.h
299
rtc::
SSLCertificate
** cert);
/external/webrtc/webrtc/p2p/base/
transportchannel.h
132
virtual bool GetRemoteSSLCertificate(rtc::
SSLCertificate
** cert) const = 0;
transportcontroller.h
62
rtc::
SSLCertificate
** cert);
166
rtc::
SSLCertificate
** cert);
transport.h
196
bool GetRemoteSSLCertificate(rtc::
SSLCertificate
** cert);
dtlstransportchannel.h
142
bool GetRemoteSSLCertificate(rtc::
SSLCertificate
** cert) const override;
dtlstransportchannel_unittest.cc
[
all
...]
p2ptransportchannel.h
138
bool GetRemoteSSLCertificate(rtc::
SSLCertificate
** cert) const override {
transportcontroller.cc
91
rtc::
SSLCertificate
** cert) {
392
rtc::
SSLCertificate
** cert) {
transport.cc
80
bool Transport::GetRemoteSSLCertificate(rtc::
SSLCertificate
** cert) {
Completed in 1559 milliseconds
1
2