LeviLamina
Loading...
Searching...
No Matches
ThumbprintFormat.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Crypto::Certificate {
6
7enum class ThumbprintFormat : int {
8 Binary = 0,
9 Base64 = 1,
10 Base64URL = 2,
11 HexGrouped2 = 3,
12 HexGrouped4 = 4,
13};
14
15}