ECDsa.TrySignHash 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TrySignHash(ReadOnlySpan<Byte>, Span<Byte>, Int32) |
使用目前金鑰,嘗試將所指定唯讀位元組範圍 (代表資料雜湊) 的 ECDSA 數位簽章計算到提供的目的地。 |
TrySignHash(ReadOnlySpan<Byte>, Span<Byte>, DSASignatureFormat, Int32) |
嘗試以指定的格式,建立指定雜湊值的 ECDSA 簽章,放至提供的緩衝區。 |
TrySignHash(ReadOnlySpan<Byte>, Span<Byte>, Int32)
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
使用目前金鑰,嘗試將所指定唯讀位元組範圍 (代表資料雜湊) 的 ECDSA 數位簽章計算到提供的目的地。
public:
virtual bool TrySignHash(ReadOnlySpan<System::Byte> hash, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public virtual bool TrySignHash (ReadOnlySpan<byte> hash, Span<byte> destination, out int bytesWritten);
abstract member TrySignHash : ReadOnlySpan<byte> * Span<byte> * int -> bool
override this.TrySignHash : ReadOnlySpan<byte> * Span<byte> * int -> bool
Public Overridable Function TrySignHash (hash As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
參數
- hash
- ReadOnlySpan<Byte>
要簽署之資料的雜湊值。
- bytesWritten
- Int32
當此方法傳回時,為寫入 destination
的位元組總數。 這個參數會被視為未初始化。
傳回
如果 destination
不夠長,無法接收此簽章,則為 false
。
適用於
TrySignHash(ReadOnlySpan<Byte>, Span<Byte>, DSASignatureFormat, Int32)
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
嘗試以指定的格式,建立指定雜湊值的 ECDSA 簽章,放至提供的緩衝區。
public:
bool TrySignHash(ReadOnlySpan<System::Byte> hash, Span<System::Byte> destination, System::Security::Cryptography::DSASignatureFormat signatureFormat, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TrySignHash (ReadOnlySpan<byte> hash, Span<byte> destination, System.Security.Cryptography.DSASignatureFormat signatureFormat, out int bytesWritten);
member this.TrySignHash : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.DSASignatureFormat * int -> bool
Public Function TrySignHash (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
不是已知的格式。
簽署作業中發生錯誤。