ECDsa.TrySignHashCore 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
尝试在提供的缓冲区中以指定的格式为指定的哈希值创建 ECDSA 签名。
protected:
virtual bool TrySignHashCore(ReadOnlySpan<System::Byte> hash, Span<System::Byte> destination, System::Security::Cryptography::DSASignatureFormat signatureFormat, [Runtime::InteropServices::Out] int % bytesWritten);
protected virtual bool TrySignHashCore (ReadOnlySpan<byte> hash, Span<byte> destination, System.Security.Cryptography.DSASignatureFormat signatureFormat, out int bytesWritten);
abstract member TrySignHashCore : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.DSASignatureFormat * int -> bool
override this.TrySignHashCore : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.DSASignatureFormat * int -> bool
Protected Overridable Function TrySignHashCore (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
。
例外
签名时出错。