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[]

인증서의 해시 값입니다.

특성

추가 정보

적용 대상