Certificate.GetHashValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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[]
证书的哈希值。
- 属性