CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
padding_mode.h
1
2#pragma once
3
4#include <system/enum.h>
5
6namespace System { namespace Security { namespace Cryptography {
7
9enum class PaddingMode {
11 None = 1,
13 PKCS7 = 2,
15 Zeros = 3,
17 ANSIX923 = 4,
19 ISO10126 = 5,
20};
21
22}}}
23
26template<>
27struct EnumMetaInfo<System::Security::Cryptography::PaddingMode>
28{
29 static const ASPOSECPP_SHARED_API std::array<std::pair<System::Security::Cryptography::PaddingMode, const char_t*>, 5>& values();
30};
PaddingMode
Defines how to treat messages that is shorter than block required by crypto operation....
Definition: padding_mode.h:9
@ ANSIX923
Use ANSIX923 padding string.
@ PKCS7
Use PKCS #7 padding string.
@ ISO10126
Use ISO10126 padding string.
Definition: db_command.h:9