CryptographicOperations.HashData 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
HashData(HashAlgorithmName, Byte[]) |
데이터의 해시를 계산합니다. |
HashData(HashAlgorithmName, Stream) |
스트림의 해시를 계산합니다. |
HashData(HashAlgorithmName, ReadOnlySpan<Byte>) |
데이터의 해시를 계산합니다. |
HashData(HashAlgorithmName, Stream, Span<Byte>) |
스트림의 해시를 계산합니다. |
HashData(HashAlgorithmName, ReadOnlySpan<Byte>, Span<Byte>) |
데이터의 해시를 계산합니다. |
HashData(HashAlgorithmName, Byte[])
- Source:
- CryptographicOperations.cs
데이터의 해시를 계산합니다.
public:
static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, cli::array <System::Byte> ^ source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * byte[] -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Byte()) As Byte()
매개 변수
- hashAlgorithm
- HashAlgorithmName
해시를 계산하는 데 사용되는 알고리즘입니다.
- source
- Byte[]
해시할 데이터입니다.
반환
데이터의 해시입니다.
예외
hashAlgorithm
비어 있는 Name 있습니다.
hashAlgorithm
현재 플랫폼에서 지원되지 않는 해시 알고리즘을 지정합니다.
hashAlgorithm
알 수 없는 해시 알고리즘을 지정합니다.
적용 대상
HashData(HashAlgorithmName, Stream)
- Source:
- CryptographicOperations.cs
스트림의 해시를 계산합니다.
public:
static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::IO::Stream ^ source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.IO.Stream source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * System.IO.Stream -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Stream) As Byte()
매개 변수
- hashAlgorithm
- HashAlgorithmName
해시를 계산하는 데 사용되는 알고리즘입니다.
- source
- Stream
해시할 스트림입니다.
반환
데이터의 해시입니다.
예외
hashAlgorithm
현재 플랫폼에서 지원되지 않는 해시 알고리즘을 지정합니다.
hashAlgorithm
알 수 없는 해시 알고리즘을 지정합니다.
적용 대상
HashData(HashAlgorithmName, ReadOnlySpan<Byte>)
- Source:
- CryptographicOperations.cs
데이터의 해시를 계산합니다.
public:
static cli::array <System::Byte> ^ HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> source);
public static byte[] HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> source);
static member HashData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> -> byte[]
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As ReadOnlySpan(Of Byte)) As Byte()
매개 변수
- hashAlgorithm
- HashAlgorithmName
해시를 계산하는 데 사용되는 알고리즘입니다.
- source
- ReadOnlySpan<Byte>
해시할 데이터입니다.
반환
데이터의 해시입니다.
예외
hashAlgorithm
null
Name 있습니다.
hashAlgorithm
비어 있는 Name 있습니다.
hashAlgorithm
현재 플랫폼에서 지원되지 않는 해시 알고리즘을 지정합니다.
hashAlgorithm
알 수 없는 해시 알고리즘을 지정합니다.
적용 대상
HashData(HashAlgorithmName, Stream, Span<Byte>)
- Source:
- CryptographicOperations.cs
스트림의 해시를 계산합니다.
public:
static int HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::IO::Stream ^ source, Span<System::Byte> destination);
public static int HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.IO.Stream source, Span<byte> destination);
static member HashData : System.Security.Cryptography.HashAlgorithmName * System.IO.Stream * Span<byte> -> int
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As Stream, destination As Span(Of Byte)) As Integer
매개 변수
- hashAlgorithm
- HashAlgorithmName
해시를 계산하는 데 사용되는 알고리즘입니다.
- source
- Stream
해시할 스트림입니다.
반환
destination
기록된 총 바이트 수입니다.
예외
destination
버퍼가 너무 작아 계산된 해시 크기를 보유할 수 없습니다.
-또는-
hashAlgorithm
비어 있는 Name 있습니다.
-또는-
source
읽기를 지원하지 않습니다.
hashAlgorithm
현재 플랫폼에서 지원되지 않는 해시 알고리즘을 지정합니다.
hashAlgorithm
알 수 없는 해시 알고리즘을 지정합니다.
적용 대상
HashData(HashAlgorithmName, ReadOnlySpan<Byte>, Span<Byte>)
- Source:
- CryptographicOperations.cs
데이터의 해시를 계산합니다.
public:
static int HashData(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> source, Span<System::Byte> destination);
public static int HashData (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> source, Span<byte> destination);
static member HashData : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * Span<byte> -> int
Public Shared Function HashData (hashAlgorithm As HashAlgorithmName, source As ReadOnlySpan(Of Byte), destination As Span(Of Byte)) As Integer
매개 변수
- hashAlgorithm
- HashAlgorithmName
해시를 계산하는 데 사용되는 알고리즘입니다.
- source
- ReadOnlySpan<Byte>
해시할 데이터입니다.
반환
destination
기록된 총 바이트 수입니다.
예외
hashAlgorithm
null
Name 있습니다.
hashAlgorithm
현재 플랫폼에서 지원되지 않는 해시 알고리즘을 지정합니다.
hashAlgorithm
알 수 없는 해시 알고리즘을 지정합니다.
적용 대상
.NET