다음을 통해 공유


CryptographicOperations.HashDataAsync 메서드

정의

오버로드

HashDataAsync(HashAlgorithmName, Stream, CancellationToken)

스트림의 해시를 비동기적으로 계산합니다.

HashDataAsync(HashAlgorithmName, Stream, Memory<Byte>, CancellationToken)

스트림의 해시를 비동기적으로 계산합니다.

HashDataAsync(HashAlgorithmName, Stream, CancellationToken)

Source:
CryptographicOperations.cs

스트림의 해시를 비동기적으로 계산합니다.

public static System.Threading.Tasks.ValueTask<byte[]> HashDataAsync (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.IO.Stream source, System.Threading.CancellationToken cancellationToken = default);
static member HashDataAsync : System.Security.Cryptography.HashAlgorithmName * System.IO.Stream * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<byte[]>
Public Shared Function HashDataAsync (hashAlgorithm As HashAlgorithmName, source As Stream, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Byte())

매개 변수

hashAlgorithm
HashAlgorithmName

해시를 계산하는 데 사용되는 알고리즘입니다.

source
Stream

해시할 스트림입니다.

cancellationToken
CancellationToken

취소 요청을 모니터링할 토큰입니다. 기본값은 None.

반환

데이터의 해시입니다.

예외

source null.

-또는-

hashAlgorithm null Name 있습니다.

hashAlgorithm 비어 있는 Name 있습니다.

-또는-

source 읽기를 지원하지 않습니다.

hashAlgorithm 현재 플랫폼에서 지원되지 않는 해시 알고리즘을 지정합니다.

hashAlgorithm 알 수 없는 해시 알고리즘을 지정합니다.

cancellationToken 취소되었습니다.

적용 대상

HashDataAsync(HashAlgorithmName, Stream, Memory<Byte>, CancellationToken)

Source:
CryptographicOperations.cs

스트림의 해시를 비동기적으로 계산합니다.

public static System.Threading.Tasks.ValueTask<int> HashDataAsync (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.IO.Stream source, Memory<byte> destination, System.Threading.CancellationToken cancellationToken = default);
static member HashDataAsync : System.Security.Cryptography.HashAlgorithmName * System.IO.Stream * Memory<byte> * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<int>
Public Shared Function HashDataAsync (hashAlgorithm As HashAlgorithmName, source As Stream, destination As Memory(Of Byte), Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Integer)

매개 변수

hashAlgorithm
HashAlgorithmName

해시를 계산하는 데 사용되는 알고리즘입니다.

source
Stream

해시할 스트림입니다.

destination
Memory<Byte>

해시 값을 받을 버퍼입니다.

cancellationToken
CancellationToken

취소 요청을 모니터링할 토큰입니다. 기본값은 None.

반환

destination기록된 총 바이트 수입니다.

예외

source null.

-또는-

hashAlgorithm null Name 있습니다.

destination 버퍼가 너무 작아 계산된 해시 크기를 보유할 수 없습니다.

-또는-

hashAlgorithm 비어 있는 Name 있습니다.

-또는-

source 읽기를 지원하지 않습니다.

hashAlgorithm 현재 플랫폼에서 지원되지 않는 해시 알고리즘을 지정합니다.

hashAlgorithm 알 수 없는 해시 알고리즘을 지정합니다.

cancellationToken 취소되었습니다.

적용 대상