LeviLamina
Loading...
Searching...
No Matches
MessageDigest.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
8public:
9 // MessageDigest inner types define
10 enum : int {
11 // bitfield representation
12 KMaxSize = 1 << 6,
13 };
14
15public:
16 // virtual functions
17 // NOLINTBEGIN
18 // vIndex: 0
19 virtual ~MessageDigest();
20
21 // vIndex: 1
22 virtual uint64 Size() const = 0;
23
24 // vIndex: 2
25 virtual void Update(void const*, uint64) = 0;
26
27 // vIndex: 3
28 virtual uint64 Finish(void*, uint64) = 0;
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCNAPI void $dtor();
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // vftables
45 // NOLINTBEGIN
46 MCNAPI static void** $vftable();
47 // NOLINTEND
48};
49
50} // namespace rtc
Definition MessageDigest.h:7
MCAPI void $dtor()
static MCAPI void ** $vftable()