ECDsa.SignData 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
计算指定数据的哈希值,并对其进行签名。
重载
SignData(Byte[], HashAlgorithmName) |
使用指定的哈希算法计算指定字节数组的哈希值,并对生成的哈希值进行签名。 |
SignData(Stream, HashAlgorithmName) |
使用指定的哈希算法计算指定流的哈希值,并对生成的哈希值进行签名。 |
SignData(ReadOnlySpan<Byte>, HashAlgorithmName) |
计算指定数据的哈希值,并对其进行签名。 |
SignData(Byte[], HashAlgorithmName, DSASignatureFormat) |
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。 |
SignData(Stream, HashAlgorithmName, DSASignatureFormat) |
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。 |
SignData(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat) |
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。 |
SignData(ReadOnlySpan<Byte>, Span<Byte>, HashAlgorithmName) |
计算指定数据的哈希值,并将其以指示的格式签名到提供的缓冲区中。 |
SignData(Byte[], Int32, Int32, HashAlgorithmName) |
使用指定的哈希算法计算指定字节数组的一个部分的哈希值,并对生成的哈希值进行签名。 |
SignData(ReadOnlySpan<Byte>, Span<Byte>, HashAlgorithmName, DSASignatureFormat) |
计算指定数据的哈希值,并将其以指示的格式签名到提供的缓冲区中。 |
SignData(Byte[], Int32, Int32, HashAlgorithmName, DSASignatureFormat) |
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。 |
SignData(Byte[], HashAlgorithmName)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
使用指定的哈希算法计算指定字节数组的哈希值,并对生成的哈希值进行签名。
public:
virtual cli::array <System::Byte> ^ SignData(cli::array <System::Byte> ^ data, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public virtual byte[] SignData (byte[] data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
abstract member SignData : byte[] * System.Security.Cryptography.HashAlgorithmName -> byte[]
override this.SignData : byte[] * System.Security.Cryptography.HashAlgorithmName -> byte[]
Public Overridable Function SignData (data As Byte(), hashAlgorithm As HashAlgorithmName) As Byte()
参数
- data
- Byte[]
要为其计算哈希的输入数据。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
返回
指定数据的 ECDSA 签名。
例外
data
为 null
。
适用于
SignData(Stream, HashAlgorithmName)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
使用指定的哈希算法计算指定流的哈希值,并对生成的哈希值进行签名。
public:
virtual cli::array <System::Byte> ^ SignData(System::IO::Stream ^ data, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public virtual byte[] SignData (System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
abstract member SignData : System.IO.Stream * System.Security.Cryptography.HashAlgorithmName -> byte[]
override this.SignData : System.IO.Stream * System.Security.Cryptography.HashAlgorithmName -> byte[]
Public Overridable Function SignData (data As Stream, hashAlgorithm As HashAlgorithmName) As Byte()
参数
- data
- Stream
要为其计算哈希的输入流。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
返回
指定数据的 ECDSA 签名。
例外
data
为 null
。
适用于
SignData(ReadOnlySpan<Byte>, HashAlgorithmName)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
计算指定数据的哈希值,并对其进行签名。
public:
cli::array <System::Byte> ^ SignData(ReadOnlySpan<System::Byte> data, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public byte[] SignData (ReadOnlySpan<byte> data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
member this.SignData : ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName -> byte[]
Public Function SignData (data As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName) As Byte()
参数
- data
- ReadOnlySpan<Byte>
要进行哈希处理和签名的数据。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
返回
指定数据的 ECDSA 签名。
例外
hashAlgorithm
的 Name 是空字符串。
hashAlgorithm
Name的 为 null
。
注解
此方法将使用 IeeeP1363FixedFieldConcatenation 对签名进行编码。 若要使用不同的签名格式,请使用 SignData(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat)。
适用于
SignData(Byte[], HashAlgorithmName, DSASignatureFormat)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。
public:
cli::array <System::Byte> ^ SignData(cli::array <System::Byte> ^ data, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
public byte[] SignData (byte[] data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
member this.SignData : byte[] * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> byte[]
Public Function SignData (data As Byte(), hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Byte()
参数
- data
- Byte[]
要签名的数据。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
- signatureFormat
- DSASignatureFormat
用于签名的编码格式。
返回
指定数据的 ECDSA 签名。
例外
data
为 null
。
signatureFormat
不是已知格式。
hashAlgorithm
具有 null
或空的 Name。
哈希处理或签名时出错。
适用于
SignData(Stream, HashAlgorithmName, DSASignatureFormat)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。
public:
cli::array <System::Byte> ^ SignData(System::IO::Stream ^ data, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
public byte[] SignData (System.IO.Stream data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
member this.SignData : System.IO.Stream * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> byte[]
Public Function SignData (data As Stream, hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Byte()
参数
- data
- Stream
要签名的数据。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
- signatureFormat
- DSASignatureFormat
用于签名的编码格式。
返回
指定数据的 ECDSA 签名。
例外
data
为 null
。
signatureFormat
不是已知格式。
hashAlgorithm
具有 null
或空的 Name。
哈希处理或签名时出错。
适用于
SignData(ReadOnlySpan<Byte>, HashAlgorithmName, DSASignatureFormat)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。
public:
cli::array <System::Byte> ^ SignData(ReadOnlySpan<System::Byte> data, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
public byte[] SignData (ReadOnlySpan<byte> data, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
member this.SignData : ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> byte[]
Public Function SignData (data As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Byte()
参数
- data
- ReadOnlySpan<Byte>
要进行哈希处理和签名的数据。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
- signatureFormat
- DSASignatureFormat
用于签名的编码格式。
返回
指定数据的 ECDSA 签名。
例外
hashAlgorithm
的 Name 是空字符串。
hashAlgorithm
Name的 为 null
。
signatureFormat
不是已知格式。
适用于
SignData(ReadOnlySpan<Byte>, Span<Byte>, HashAlgorithmName)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
计算指定数据的哈希值,并将其以指示的格式签名到提供的缓冲区中。
public:
int SignData(ReadOnlySpan<System::Byte> data, Span<System::Byte> destination, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public int SignData (ReadOnlySpan<byte> data, Span<byte> destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
member this.SignData : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.HashAlgorithmName -> int
Public Function SignData (data As ReadOnlySpan(Of Byte), destination As Span(Of Byte), hashAlgorithm As HashAlgorithmName) As Integer
参数
- data
- ReadOnlySpan<Byte>
要进行哈希处理和签名的数据。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
返回
写入 destination
的总字节数。
例外
hashAlgorithm
Name的 为 null
。
注解
此方法将使用 IeeeP1363FixedFieldConcatenation 对签名进行编码。 若要使用不同的签名格式,请使用 SignData(ReadOnlySpan<Byte>, Span<Byte>, HashAlgorithmName, DSASignatureFormat)。
适用于
SignData(Byte[], Int32, Int32, HashAlgorithmName)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
使用指定的哈希算法计算指定字节数组的一个部分的哈希值,并对生成的哈希值进行签名。
public:
virtual cli::array <System::Byte> ^ SignData(cli::array <System::Byte> ^ data, int offset, int count, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public virtual byte[] SignData (byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
abstract member SignData : byte[] * int * int * System.Security.Cryptography.HashAlgorithmName -> byte[]
override this.SignData : byte[] * int * int * System.Security.Cryptography.HashAlgorithmName -> byte[]
Public Overridable Function SignData (data As Byte(), offset As Integer, count As Integer, hashAlgorithm As HashAlgorithmName) As Byte()
参数
- data
- Byte[]
要为其计算哈希的输入数据。
- offset
- Int32
数组中自其开始使用数据的偏移量。
- count
- Int32
数组中用作数据的字节数。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
返回
指定数据的 ECDSA 签名。
例外
data
为 null
。
适用于
SignData(ReadOnlySpan<Byte>, Span<Byte>, HashAlgorithmName, DSASignatureFormat)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
计算指定数据的哈希值,并将其以指定格式签名到提供的缓冲区中。
public:
int SignData(ReadOnlySpan<System::Byte> data, Span<System::Byte> destination, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
public int SignData (ReadOnlySpan<byte> data, Span<byte> destination, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
member this.SignData : ReadOnlySpan<byte> * Span<byte> * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> int
Public Function SignData (data As ReadOnlySpan(Of Byte), destination As Span(Of Byte), hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Integer
参数
- data
- ReadOnlySpan<Byte>
要进行哈希处理和签名的数据。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
- signatureFormat
- DSASignatureFormat
要用于签名的编码格式。
返回
写入 destination
的总字节数。
例外
hashAlgorithm
Name的 为 null
。
signatureFormat
不是已知格式。
适用于
SignData(Byte[], Int32, Int32, HashAlgorithmName, DSASignatureFormat)
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
- Source:
- ECDsa.cs
计算指定数据的哈希值,并使用指定的签名格式对其进行签名。
public:
cli::array <System::Byte> ^ SignData(cli::array <System::Byte> ^ data, int offset, int count, System::Security::Cryptography::HashAlgorithmName hashAlgorithm, System::Security::Cryptography::DSASignatureFormat signatureFormat);
public byte[] SignData (byte[] data, int offset, int count, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.DSASignatureFormat signatureFormat);
member this.SignData : byte[] * int * int * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.DSASignatureFormat -> byte[]
Public Function SignData (data As Byte(), offset As Integer, count As Integer, hashAlgorithm As HashAlgorithmName, signatureFormat As DSASignatureFormat) As Byte()
参数
- data
- Byte[]
要签名的数据。
- offset
- Int32
data
中自其开始使用哈希处理的偏移量。
- count
- Int32
要从 data
中读取的字节数。
- hashAlgorithm
- HashAlgorithmName
要用于创建哈希值的哈希算法。
- signatureFormat
- DSASignatureFormat
要用于签名的编码格式。
返回
指定数据的 ECDSA 签名。
例外
data
为 null
。
signatureFormat
不是已知格式。
- 或 -
offset
小于零。
或
count
小于零。
或
offset
+
count
- 1 会导致超出 data
上限的索引。
hashAlgorithm
具有 null
或空的 Name。
哈希处理或签名时出错。