Win32 API 日本語リファレンス
ホームSecurity.Cryptography › DSAFIPSVERSION_ENUM

DSAFIPSVERSION_ENUM

列挙型
基底型i4

メンバー 2

名前10進16進
DSA_FIPS186_200x0
DSA_FIPS186_310x1

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum DSAFIPSVERSION_ENUM : int {
    DSA_FIPS186_2 = 0,
    DSA_FIPS186_3 = 1
} DSAFIPSVERSION_ENUM;
public enum DSAFIPSVERSION_ENUM : int
{
    DSA_FIPS186_2 = 0,
    DSA_FIPS186_3 = 1,
}
Public Enum DSAFIPSVERSION_ENUM As Integer
    DSA_FIPS186_2 = 0
    DSA_FIPS186_3 = 1
End Enum
import enum

class DSAFIPSVERSION_ENUM(enum.IntEnum):
    DSA_FIPS186_2 = 0
    DSA_FIPS186_3 = 1
// DSAFIPSVERSION_ENUM
pub const DSA_FIPS186_2: i32 = 0;
pub const DSA_FIPS186_3: i32 = 1;
// DSAFIPSVERSION_ENUM
const (
	DSA_FIPS186_2 int32 = 0
	DSA_FIPS186_3 int32 = 1
)
const
  DSA_FIPS186_2 = 0;
  DSA_FIPS186_3 = 1;
// DSAFIPSVERSION_ENUM
pub const DSA_FIPS186_2: i32 = 0;
pub const DSA_FIPS186_3: i32 = 1;
const
  DSA_FIPS186_2* = 0
  DSA_FIPS186_3* = 1
enum DSAFIPSVERSION_ENUM : int {
    DSA_FIPS186_2 = 0,
    DSA_FIPS186_3 = 1,
}
#define global DSA_FIPS186_2 0x0
#define global DSA_FIPS186_3 0x1