Compartilhar via


Certificate.GetHashValue Método

Definição

Sobrecargas

GetHashValue()

Obtém o valor de hash SHA1 para o certificado.

GetHashValue(String)

Obtém o valor de hash do certificado para um algoritmo especificado.

GetHashValue()

Obtém o valor de hash SHA1 para o certificado.

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()

Retornos

Byte[]

byte[]

O valor de hash SHA1 para o certificado.

Atributos

Confira também

Aplica-se a

GetHashValue(String)

Obtém o valor de hash do certificado para um algoritmo especificado.

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()

Parâmetros

hashAlgorithmName
String

Platform::String

winrt::hstring

O algoritmo de hash a ser usado para o valor de hash do certificado. Há suporte apenas para valores de "SHA1" ou "SHA256". Para obter o valor de hash SHA2 para o certificado, especifique "SHA256".

Retornos

Byte[]

byte[]

O valor de hash do certificado.

Atributos

Confira também

Aplica-se a