Certificate.GetHashValue 方法

定义

重载

GetHashValue()

获取证书的 SHA1 哈希值。

GetHashValue(String)

获取指定算法的证书的哈希值。

GetHashValue()

获取证书的 SHA1 哈希值。

public:
 virtual Platform::Array <byte> ^ GetHashValue() = GetHashValue;
/// [Windows.Foundation.Metadata.Overload("GetHashValue")]
winrt::array_view <byte> GetHashValue();
[Windows.Foundation.Metadata.Overload("GetHashValue")]
public byte[] GetHashValue();
function getHashValue()
Public Function GetHashValue () As Byte()

返回

Byte[]

byte[]

证书的 SHA1 哈希值。

属性

另请参阅

适用于

GetHashValue(String)

获取指定算法的证书的哈希值。

public:
 virtual Platform::Array <byte> ^ GetHashValue(Platform::String ^ hashAlgorithmName) = GetHashValue;
/// [Windows.Foundation.Metadata.Overload("GetHashValueWithAlgorithm")]
winrt::array_view <byte> GetHashValue(winrt::hstring const& hashAlgorithmName);
[Windows.Foundation.Metadata.Overload("GetHashValueWithAlgorithm")]
public byte[] GetHashValue(string hashAlgorithmName);
function getHashValue(hashAlgorithmName)
Public Function GetHashValue (hashAlgorithmName As String) As Byte()

参数

hashAlgorithmName
String

Platform::String

winrt::hstring

用于证书哈希值的哈希算法。 仅支持“SHA1”或“SHA256”的值。 若要获取证书的 SHA2 哈希值,请指定“SHA256”。

返回

Byte[]

byte[]

证书的哈希值。

属性

另请参阅

适用于