LeviLamina
Loading...
Searching...
No Matches
SSLIdentity.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace rtc { class KeyParams; }
8namespace rtc { class SSLCertChain; }
9namespace rtc { class SSLCertificate; }
10// clang-format on
11
12namespace rtc {
13
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~SSLIdentity() = default;
20
21 // vIndex: 1
22 virtual ::rtc::SSLCertificate const& certificate() const = 0;
23
24 // vIndex: 2
25 virtual ::rtc::SSLCertChain const& cert_chain() const = 0;
26
27 // vIndex: 3
28 virtual ::std::string PrivateKeyToPEMString() const = 0;
29
30 // vIndex: 4
31 virtual ::std::string PublicKeyToPEMString() const = 0;
32
33 // vIndex: 5
34 virtual ::std::unique_ptr<::rtc::SSLIdentity> CloneInternal() const = 0;
35 // NOLINTEND
36
37public:
38 // static functions
39 // NOLINTBEGIN
40 MCAPI static ::std::unique_ptr<::rtc::SSLIdentity> Create(::std::string_view, ::rtc::KeyParams const&);
41
42 MCAPI static ::std::unique_ptr<::rtc::SSLIdentity> Create(::std::string_view, ::rtc::KeyParams const&, int64);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54
55 // NOLINTEND
56
57public:
58 // vftables
59 // NOLINTBEGIN
60 MCAPI static void** $vftable();
61 // NOLINTEND
62};
63
64} // namespace rtc
Definition KeyParams.h:16
Definition SSLIdentity.h:14