CertificateRequestProperties.HashAlgorithmName プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
証明書要求署名の作成時に使用されるハッシュ アルゴリズムを取得または設定します。
public:
property Platform::String ^ HashAlgorithmName { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring HashAlgorithmName();
void HashAlgorithmName(winrt::hstring value);
public string HashAlgorithmName { get; set; }
var string = certificateRequestProperties.hashAlgorithmName;
certificateRequestProperties.hashAlgorithmName = string;
Public Property HashAlgorithmName As String
プロパティ値
ハッシュ アルゴリズム。
例
public String GetSetHashAlgorithm(String strAlgNameIn)
{
// Create a new CertificateRequestProperties object.
CertificateRequestProperties reqProperties = new CertificateRequestProperties();
// The default value is SHA256.
String strDefaultAlgName = reqProperties.HashAlgorithmName;
// If the input option does not equal the default option, reset the property value.
if (strAlgNameIn != strDefaultAlgName)
{
reqProperties.HashAlgorithmName = strAlgNameIn;
}
// Return the algorithm name.
return reqProperties.HashAlgorithmName;
}
注釈
既定値は SHA256 です。