ECDsa.SignDataCore 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
SignDataCore(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat) |
지정된 데이터의 해시 값을 계산하고 지정된 시그니처 형식을 사용하여 해당 값에 서명합니다. |
SignDataCore(Stream, HashAlgorithmName, DSASignatureFormat) |
지정된 데이터의 해시 값을 계산하고 지정된 시그니처 형식을 사용하여 해당 값에 서명합니다. |
SignDataCore(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
지정된 데이터의 해시 값을 계산하고 지정된 시그니처 형식을 사용하여 해당 값에 서명합니다.
protected:
virtual cli::array <System::Byte> ^ SignDataCore(ReadOnlySpan<System::Byte> data, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
protected virtual byte[] SignDataCore (ReadOnlySpan<byte> data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
abstract member SignDataCore : ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> byte[]
override this.SignDataCore : ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> byte[]
Protected Overridable Function SignDataCore (data As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Byte()
매개 변수
- data
- ReadOnlySpan<Byte>
서명할 데이터입니다.
- hashAlgorithm
- HashAlgorithmName
해시 값을 만드는 데 사용할 해시 알고리즘입니다.
- signatureFormat
- DSASignatureFormat
시그니처에 사용할 인코딩 형식입니다.
반환
Byte[]
지정된 데이터의 ECDSA 서명입니다.
예외
해시 또는 서명 작업에서 오류가 발생했습니다.
적용 대상
SignDataCore(Stream, HashAlgorithmName, DSASignatureFormat)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
지정된 데이터의 해시 값을 계산하고 지정된 시그니처 형식을 사용하여 해당 값에 서명합니다.
protected:
virtual cli::array <System::Byte> ^ SignDataCore(System::IO::Stream ^ data, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
protected virtual byte[] SignDataCore (System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
abstract member SignDataCore : System.IO.Stream * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> byte[]
override this.SignDataCore : System.IO.Stream * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> byte[]
Protected Overridable Function SignDataCore (data As Stream, hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Byte()
매개 변수
- data
- Stream
서명할 데이터입니다.
- hashAlgorithm
- HashAlgorithmName
해시 값을 만드는 데 사용할 해시 알고리즘입니다.
- signatureFormat
- DSASignatureFormat
시그니처에 사용할 인코딩 형식입니다.
반환
Byte[]
지정된 데이터의 ECDSA 서명입니다.
예외
해시 또는 서명 작업에서 오류가 발생했습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET