LeviLamina
Loading...
Searching...
No Matches
EncryptionCipherMode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace CodeBuilder {
6
7enum class EncryptionCipherMode : uchar {
8 Cfb8 = 0,
9 Cfb128 = 1,
10};
11
12}