ECDsa.SignHash 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
SignHash(Byte[]) |
產生指定雜湊值的數位簽章。 |
SignHash(ReadOnlySpan<Byte>) |
計算指定哈希值的 ECDSA 簽章。 |
SignHash(Byte[], DSASignatureFormat) |
以指定的格式計算指定哈希值的 ECDSA 簽章。 |
SignHash(ReadOnlySpan<Byte>, DSASignatureFormat) |
以指定的格式計算指定哈希值的 ECDSA 簽章。 |
SignHash(ReadOnlySpan<Byte>, Span<Byte>) |
將指定哈希值的 ECDSA 簽章計算到提供的緩衝區中。 |
SignHash(ReadOnlySpan<Byte>, Span<Byte>, DSASignatureFormat) |
將指定之哈希值的 ECDSA 簽章,以指定的格式計算為提供的緩衝區。 |
SignHash(Byte[])
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
產生指定雜湊值的數位簽章。
public:
abstract cli::array <System::Byte> ^ SignHash(cli::array <System::Byte> ^ hash);
public abstract byte[] SignHash (byte[] hash);
abstract member SignHash : byte[] -> byte[]
Public MustOverride Function SignHash (hash As Byte()) As Byte()
參數
- hash
- Byte[]
要簽署之資料的雜湊值。
傳回
指定雜湊值的數位簽章。
例外狀況
hash
參數為 null
。
適用於
SignHash(ReadOnlySpan<Byte>)
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
計算指定哈希值的 ECDSA 簽章。
public:
cli::array <System::Byte> ^ SignHash(ReadOnlySpan<System::Byte> hash);
public byte[] SignHash (ReadOnlySpan<byte> hash);
member this.SignHash : ReadOnlySpan<byte> -> byte[]
Public Function SignHash (hash As ReadOnlySpan(Of Byte)) As Byte()
參數
- hash
- ReadOnlySpan<Byte>
要簽署之資料的雜湊值。
傳回
指定雜湊值的數位簽章。
例外狀況
簽署作業發生錯誤。
備註
這個方法會用來 IeeeP1363FixedFieldConcatenation 編碼簽章。 若要使用不同的簽章格式, 請使用 SignHash(ReadOnlySpan<Byte>, DSASignatureFormat)。
適用於
SignHash(Byte[], DSASignatureFormat)
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
以指定的格式計算指定哈希值的 ECDSA 簽章。
public:
cli::array <System::Byte> ^ SignHash(cli::array <System::Byte> ^ hash, System::Security::Cryptography::DSASignatureFormat signatureFormat);
public byte[] SignHash (byte[] hash, System.Security.Cryptography.DSASignatureFormat signatureFormat);
member this.SignHash : byte[] * System.Security.Cryptography.DSASignatureFormat -> byte[]
Public Function SignHash (hash As Byte(), signatureFormat As DSASignatureFormat) As Byte()
參數
- hash
- Byte[]
要簽署的哈希值。
- signatureFormat
- DSASignatureFormat
用於簽章的編碼格式。
傳回
指定資料的 ECDSA 簽章。
例外狀況
hash
為 null
。
signatureFormat
不是已知的格式。
簽署作業發生錯誤。
適用於
SignHash(ReadOnlySpan<Byte>, DSASignatureFormat)
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
以指定的格式計算指定哈希值的 ECDSA 簽章。
public:
cli::array <System::Byte> ^ SignHash(ReadOnlySpan<System::Byte> hash, System::Security::Cryptography::DSASignatureFormat signatureFormat);
public byte[] SignHash (ReadOnlySpan<byte> hash, System.Security.Cryptography.DSASignatureFormat signatureFormat);
member this.SignHash : ReadOnlySpan<byte> * System.Security.Cryptography.DSASignatureFormat -> byte[]
Public Function SignHash (hash As ReadOnlySpan(Of Byte), signatureFormat As DSASignatureFormat) As Byte()
參數
- hash
- ReadOnlySpan<Byte>
要簽署之資料的雜湊值。
- signatureFormat
- DSASignatureFormat
用於簽章的編碼格式。
傳回
指定雜湊值的數位簽章。
例外狀況
signatureFormat
不是已知的格式。
簽署作業發生錯誤。
適用於
SignHash(ReadOnlySpan<Byte>, Span<Byte>)
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
將指定哈希值的 ECDSA 簽章計算到提供的緩衝區中。
public:
int SignHash(ReadOnlySpan<System::Byte> hash, Span<System::Byte> destination);
public int SignHash (ReadOnlySpan<byte> hash, Span<byte> destination);
member this.SignHash : ReadOnlySpan<byte> * Span<byte> -> int
Public Function SignHash (hash As ReadOnlySpan(Of Byte), destination As Span(Of Byte)) As Integer
參數
- hash
- ReadOnlySpan<Byte>
要簽署之資料的雜湊值。
傳回
寫入 destination
的總位元組數。
例外狀況
簽署作業發生錯誤。
中的 destination
緩衝區太小而無法保存簽章。
備註
這個方法會用來 IeeeP1363FixedFieldConcatenation 編碼簽章。 若要使用不同的簽章格式, 請使用 SignHash(ReadOnlySpan<Byte>, Span<Byte>, DSASignatureFormat)。
適用於
SignHash(ReadOnlySpan<Byte>, Span<Byte>, DSASignatureFormat)
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
- 來源:
- ECDsa.cs
將指定之哈希值的 ECDSA 簽章,以指定的格式計算為提供的緩衝區。
public:
int SignHash(ReadOnlySpan<System::Byte> hash, Span<System::Byte> destination, System::Security::Cryptography::DSASignatureFormat signatureFormat);
public int SignHash (ReadOnlySpan<byte> hash, Span<byte> destination, System.Security.Cryptography.DSASignatureFormat signatureFormat);
member this.SignHash : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.DSASignatureFormat -> int
Public Function SignHash (hash As ReadOnlySpan(Of Byte), destination As Span(Of Byte), signatureFormat As DSASignatureFormat) As Integer
參數
- hash
- ReadOnlySpan<Byte>
要簽署之資料的雜湊值。
- signatureFormat
- DSASignatureFormat
用於簽章的編碼格式。
傳回
寫入 destination
的總位元組數。
例外狀況
signatureFormat
不是已知的格式。
簽署作業發生錯誤。
中的 destination
緩衝區太小而無法保存簽章。