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

DSAFIPSVERSION_ENUM

列挙型
基底型i4

メンバー 2

名前10進16進説明
DSA_FIPS186_200x0連邦情報処理標準 (Federal Information Processing Standard、FIPS) 2 です。
DSA_FIPS186_310x1連邦情報処理標準 (Federal Information Processing Standard、FIPS) 3 です。

公式ドキュメント

DSAFIPSVERSION_ENUM 列挙型は、FIPS のバージョン情報を格納します。この列挙型は BCRYPT_DSA_KEY_BLOB_V2 構造体および BCRYPT_DSA_PARAMETER_HEADER_V2 構造体で使用されます。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。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