ホーム › Security.Cryptography.Certificates › Pkcs10AllowedSignatureTypes
Pkcs10AllowedSignatureTypes
列挙型メンバー 2
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| AllowedKeySignature | 1 | 0x1 | 暗号化キーを使用して生成された署名が許可されます。 |
| AllowedNullSignature | 2 | 0x2 | null 署名が許可されます。null 署名は SHA-1 ハッシュです。 |
公式ドキュメント
Pkcs10AllowedSignatureTypes 列挙型は、証明書要求に署名するときに許可される署名の種類を指定します。この列挙型は、IX509CertificateRequestPkcs10 インターフェイスの CheckSignature メソッドが、署名が存在し有効であるかどうかを判断するために使用します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum Pkcs10AllowedSignatureTypes : int {
AllowedKeySignature = 1,
AllowedNullSignature = 2
} Pkcs10AllowedSignatureTypes;public enum Pkcs10AllowedSignatureTypes : int
{
AllowedKeySignature = 1,
AllowedNullSignature = 2,
}Public Enum Pkcs10AllowedSignatureTypes As Integer
AllowedKeySignature = 1
AllowedNullSignature = 2
End Enumimport enum
class Pkcs10AllowedSignatureTypes(enum.IntEnum):
AllowedKeySignature = 1
AllowedNullSignature = 2// Pkcs10AllowedSignatureTypes
pub const AllowedKeySignature: i32 = 1;
pub const AllowedNullSignature: i32 = 2;// Pkcs10AllowedSignatureTypes
const (
AllowedKeySignature int32 = 1
AllowedNullSignature int32 = 2
)const
AllowedKeySignature = 1;
AllowedNullSignature = 2;// Pkcs10AllowedSignatureTypes
pub const AllowedKeySignature: i32 = 1;
pub const AllowedNullSignature: i32 = 2;const
AllowedKeySignature* = 1
AllowedNullSignature* = 2enum Pkcs10AllowedSignatureTypes : int {
AllowedKeySignature = 1,
AllowedNullSignature = 2,
}#define global AllowedKeySignature 0x1
#define global AllowedNullSignature 0x2