LeviLamina
Loading...
Searching...
No Matches
KeyParams.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/ECCurve.h"
7#include "mc/external/rtc/KeyType.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace rtc { struct RSAParams; }
12// clang-format on
13
14namespace rtc {
15
16class KeyParams {
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 KeyParams& operator=(KeyParams const&);
27 KeyParams(KeyParams const&);
28 KeyParams();
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI bool IsValid() const;
34
35 MCAPI explicit KeyParams(::rtc::KeyType);
36
37 MCAPI ::rtc::ECCurve ec_curve() const;
38
39 MCAPI ::rtc::RSAParams rsa_params() const;
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::rtc::KeyType);
46 // NOLINTEND
47};
48
49} // namespace rtc
Definition KeyParams.h:16
Definition Alias.h:14