LeviLamina
Loading...
Searching...
No Matches
Encoding.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Crypto::Certificate {
6
7enum class Encoding : int {
8 Pem = 0,
9 Der = 1,
10 Pfx = 2,
11};
12
13}