DSA.SignDataCore 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
SignDataCore(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat) |
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。 |
SignDataCore(Stream, HashAlgorithmName, DSASignatureFormat) |
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。 |
SignDataCore(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat)
- Source:
- DSA.cs
- Source:
- DSA.cs
- Source:
- 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)
- Source:
- DSA.cs
- Source:
- DSA.cs
- Source:
- 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 签名。
例外
哈希处理或签名时出错。