LeviLamina
Loading...
Searching...
No Matches
SSLCertificate.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/BufferT.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace rtc { struct SSLCertificateStats; }
11// clang-format on
12
13namespace rtc {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~SSLCertificate() = default;
21
22 // vIndex: 1
23 virtual ::std::unique_ptr<::rtc::SSLCertificate> Clone() const = 0;
24
25 // vIndex: 2
26 virtual ::std::string ToPEMString() const = 0;
27
28 // vIndex: 3
29 virtual void ToDER(::rtc::BufferT<uchar, 0>*) const = 0;
30
31 // vIndex: 4
32 virtual bool GetSignatureDigestAlgorithm(::std::string*) const = 0;
33
34 // vIndex: 5
35 virtual bool ComputeDigest(::std::string_view, uchar*, uint64, uint64*) const = 0;
36
37 // vIndex: 6
38 virtual int64 CertificateExpirationTime() const = 0;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI ::std::unique_ptr<::rtc::SSLCertificateStats> GetStats() const;
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50
51 // NOLINTEND
52
53public:
54 // virtual function thunks
55 // NOLINTBEGIN
56
57 // NOLINTEND
58};
59
60} // namespace rtc
Definition BufferT.h:8
Definition SSLCertificate.h:15