LeviLamina
Loading...
Searching...
No Matches
OperationMode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Crypto::Symmetric {
6
7enum class OperationMode : int {
8 Ecb = 0,
9 Cbc = 1,
10 Cfb = 2,
11 Cfb128 = 3,
12 Ofb = 4,
13 Gcm = 5,
14};
15
16}