システムでダイジェスト メソッドがサポートされていることを確認する
このトピックでは、システムでダイジェスト メソッドがサポートされていることを確認する方法について説明します。
XPS デジタル署名では Crypto API を使用します。この API は、システムで特定のダイジェスト メソッドがサポートされていることを確認するためのメソッドが提供されます。 Crypto API の CryptXmlEnumAlgorithmInfo 関数を使用して、システムでサポートされているダイジェスト メソッドを列挙するには、呼び出し元でコールバック メソッドとデータ構造が提供されている必要があります。 CryptXmlEnumAlgorithmInfo 関数は、コールバック メソッドを使用して列挙データを呼び出し元に渡します。
この例で使用されるデータ構造は次のコード例に示されており、次のフィールドが含まれます。
フィールド | 説明 |
---|---|
userDigestAlgorithm | チェックするダイジェスト アルゴリズムの URI を含む文字列を指す LPWSTR フィールド。 |
userDigestAlgorithmSupported | ダイジェスト アルゴリズムが証明書でサポートされているかどうかを示すブール値。 |
struct DigestMethodData
{
LPCWSTR userDigestAlgorithm;
BOOL userDigestAlgorithmSupported;
};
ダイジェスト メソッドを列挙する Crypto API メソッドは、コールバック メソッドを使用して呼び出し元にデータを返します。 CryptXmlEnumAlgorithmInfo は、システムでサポートされているダイジェスト メソッドを列挙し、コールバック メソッドが FALSE を返すまで、またはシステムでサポートされているすべてのダイジェスト メソッドが列挙されるまで、列挙される各ダイジェスト メソッド用のコールバック メソッドを呼び出します。 この例のコールバック メソッドは、CryptXmlEnumAlgorithmInfo で渡されるダイジェスト メソッドと、呼び出しメソッドで提供されるダイジェスト メソッドを比較します。
BOOL WINAPI
EnumDigestMethodCallback (
__in const CRYPT_XML_ALGORITHM_INFO *certMethodInfo,
__inout_opt void *userArg
)
{
// MAX_ALG_ID_LEN is used to set the maximum length of the
// algorithm URI in the string comparison. The URI is not
// likely to be longer than 128 characters so a fixed-size
// buffer is used in this example.
// To make this function more robust, consider
// setting this value dynamically.
static const size_t MAX_ALG_ID_LEN = 128;
DigestMethodData *certificateAlgorithmData =
(DigestMethodData*)userArg;
if (NULL != userArg) {
// Assign user data to local data structure
certificateAlgorithmData = (DigestMethodData*)userArg;
} else {
// Unable to continue this enumeration without
// data from calling method.
return FALSE;
}
// For each algorithm in the enumeration, check to see
// if the URI of the current supported algorithm matches
// the URI passed in userArg.
int cmpResult = 0;
cmpResult = wcsncmp(
certMethodInfo->wszAlgorithmURI,
certificateAlgorithmData->userDigestAlgorithm,
MAX_ALG_ID_LEN );
if ( 0 == cmpResult )
{
// This is a match...
// set supported value to true
certificateAlgorithmData->userDigestAlgorithmSupported = TRUE;
// ...and return FALSE to stop any further enumeration
return FALSE;
}
else
{
// no match was found
// return TRUE to continue enumeration
return TRUE;
}
}
次のコード サンプルでは、検証機能を 1 つのメソッドにラップし、システムがダイジェスト メソッドをサポートしているかどうかを示すブール値を返します。
BOOL
SupportsDigestAlgorithm (
__in LPCWSTR digestMethodToCheck
)
{
HRESULT hr = S_OK;
// Initialize the structure that will hold information about the
// digest method to check
DigestMethodData certificateAlgorithmData;
certificateAlgorithmData.userDigestAlgorithmSupported = FALSE;
certificateAlgorithmData.userDigestAlgorithm = digestMethodToCheck;
// Enumerate the algorithms that are supported on the system,
// the callback method compares each supported algorithm to the one
// passed in digestMethodToCheck and returns true in the
// certificateAlgorithmData.userDigestAlgorithmSupported field if
// the provided digest algorithm is supported by system.
//
// Note that CRYPT_XML_GROUP_ID_HASH is set to enumerate
// digest methods
hr = CryptXmlEnumAlgorithmInfo(
CRYPT_XML_GROUP_ID_HASH, // NOTE: CRYPT_XML_GROUP_ID_HASH
CRYPT_XML_FLAG_DISABLE_EXTENSIONS,
(void*)&certificateAlgorithmData,
EnumDigestMethodCallback);
return certificateAlgorithmData.userDigestAlgorithmSupported;
}
関連トピック
-
次のステップ
-
この例で使用
-
CryptXmlEnumAlgorithmInfo
-
詳細情報