DSA.TryCreateSignature 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
TryCreateSignature(ReadOnlySpan<Byte>, Span<Byte>, Int32) |
제공된 버퍼에 지정된 해시의 DSA 시그니처를 만들려고 합니다. |
TryCreateSignature(ReadOnlySpan<Byte>, Span<Byte>, DSASignatureFormat, Int32) |
표시된 형식으로 지정된 해시 값의 DSA 시그니처를 만들어 제공된 버퍼에 넣으려고 합니다. |
TryCreateSignature(ReadOnlySpan<Byte>, Span<Byte>, Int32)
- Source:
- DSA.cs
- Source:
- DSA.cs
- Source:
- DSA.cs
제공된 버퍼에 지정된 해시의 DSA 시그니처를 만들려고 합니다.
public:
virtual bool TryCreateSignature(ReadOnlySpan<System::Byte> hash, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public virtual bool TryCreateSignature (ReadOnlySpan<byte> hash, Span<byte> destination, out int bytesWritten);
abstract member TryCreateSignature : ReadOnlySpan<byte> * Span<byte> * int -> bool
override this.TryCreateSignature : ReadOnlySpan<byte> * Span<byte> * int -> bool
Public Overridable Function TryCreateSignature (hash As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
매개 변수
- hash
- ReadOnlySpan<Byte>
서명할 해시입니다.
- bytesWritten
- Int32
이 메서드가 반환될 때 destination
에 쓴 바이트 수를 나타내는 값을 포함합니다.
반환
destination
이 결과를 받는 데 충분히 크면 true
이고, 그렇지 않으면 false
입니다.
예외
이 인스턴스는 퍼블릭 키만 나타냅니다.
또는
구현 형식은 레거시 DSA(FIPS 186-2)만 지원하며 hash
가 20바이트 값이 아닙니다.
또는
그 외의 경우에는 시그니처를 만들지 못했습니다.
설명
이 메서드의 기본 구현은 를 호출 CreateSignature(Byte[]) 하고 결과를 에 복사하는 것입니다 destination
.
파생 형식은 중간 배열을 만들지 않도록 이 메서드를 재정의해야 합니다.
적용 대상
TryCreateSignature(ReadOnlySpan<Byte>, Span<Byte>, DSASignatureFormat, Int32)
- Source:
- DSA.cs
- Source:
- DSA.cs
- Source:
- DSA.cs
표시된 형식으로 지정된 해시 값의 DSA 시그니처를 만들어 제공된 버퍼에 넣으려고 합니다.
public:
bool TryCreateSignature(ReadOnlySpan<System::Byte> hash, Span<System::Byte> destination, System::Security::Cryptography::DSASignatureFormat signatureFormat, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryCreateSignature (ReadOnlySpan<byte> hash, Span<byte> destination, System.Security.Cryptography.DSASignatureFormat signatureFormat, out int bytesWritten);
member this.TryCreateSignature : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.DSASignatureFormat * int -> bool
Public Function TryCreateSignature (hash As ReadOnlySpan(Of Byte), destination As Span(Of Byte), signatureFormat As DSASignatureFormat, ByRef bytesWritten As Integer) As Boolean
매개 변수
- hash
- ReadOnlySpan<Byte>
서명할 해시 값입니다.
- signatureFormat
- DSASignatureFormat
시그니처에 사용할 인코딩 형식입니다.
- bytesWritten
- Int32
이 메서드가 반환될 때 destination
에 쓴 바이트 수를 나타내는 값을 포함합니다. 이 매개 변수는 초기화되지 않은 것으로 처리됩니다.
반환
destination
이 시그니처를 받을 만큼 크면 true
이고, 그렇지 않으면 false
입니다.
예외
signatureFormat
은 알려진 형식이 아닙니다.
서명 작업에서 오류가 발생했습니다.
적용 대상
.NET