DSA.SignDataCore 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
SignDataCore(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat) |
計算指定數據的哈希值,並使用指定的簽章格式簽署它。 |
SignDataCore(Stream, HashAlgorithmName, DSASignatureFormat) |
計算指定數據的哈希值,並使用指定的簽章格式簽署它。 |
SignDataCore(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat)
- 來源:
- DSA.cs
- 來源:
- DSA.cs
- 來源:
- DSA.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[]
指定資料的 DSA 簽章。
例外狀況
哈希或簽署作業發生錯誤。
適用於
SignDataCore(Stream, HashAlgorithmName, DSASignatureFormat)
- 來源:
- DSA.cs
- 來源:
- DSA.cs
- 來源:
- DSA.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[]
指定資料的 DSA 簽章。
例外狀況
哈希或簽署作業發生錯誤。