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 KMaxSize = 64,
12 };
13
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~MessageDigest();
18
19 virtual uint64 Size() const = 0;
20
21 virtual void Update(void const*, uint64) = 0;
22
23 virtual uint64 Finish(void*, uint64) = 0;
24 // NOLINTEND
25
26public:
27 // destructor thunk
28 // NOLINTBEGIN
29 MCNAPI void $dtor();
30 // NOLINTEND
31
32public:
33 // virtual function thunks
34 // NOLINTBEGIN
35
36 // NOLINTEND
37
38public:
39 // vftables
40 // NOLINTBEGIN
41 MCNAPI static void** $vftable();
42 // NOLINTEND
43};
44
45} // namespace rtc
Definition MessageDigest.h:7
MCAPI void $dtor()
static MCAPI void ** $vftable()