ECDsa.VerifyData 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据。
重载
| 名称 | 说明 |
|---|---|
| VerifyData(Byte[], Byte[], HashAlgorithmName) |
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据。 |
| VerifyData(Stream, Byte[], HashAlgorithmName) |
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据。 |
| VerifyData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, HashAlgorithmName) |
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据。 |
| VerifyData(Byte[], Int32, Int32, Byte[], HashAlgorithmName) |
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据部分。 |
VerifyData(Byte[], Byte[], HashAlgorithmName)
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据。
public:
bool VerifyData(cli::array <System::Byte> ^ data, cli::array <System::Byte> ^ signature, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public bool VerifyData(byte[] data, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
member this.VerifyData : byte[] * byte[] * System.Security.Cryptography.HashAlgorithmName -> bool
Public Function VerifyData (data As Byte(), signature As Byte(), hashAlgorithm As HashAlgorithmName) As Boolean
参数
- data
- Byte[]
已签名的数据。
- signature
- Byte[]
要验证的签名数据。
- hashAlgorithm
- HashAlgorithmName
用于创建数据的哈希值的哈希算法。
返回
true 如果签名有效,则为否则,为 false.
例外
适用于
VerifyData(Stream, Byte[], HashAlgorithmName)
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据。
public:
bool VerifyData(System::IO::Stream ^ data, cli::array <System::Byte> ^ signature, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public bool VerifyData(System.IO.Stream data, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
member this.VerifyData : System.IO.Stream * byte[] * System.Security.Cryptography.HashAlgorithmName -> bool
Public Function VerifyData (data As Stream, signature As Byte(), hashAlgorithm As HashAlgorithmName) As Boolean
参数
- data
- Stream
已签名的数据。
- signature
- Byte[]
要验证的签名数据。
- hashAlgorithm
- HashAlgorithmName
用于创建数据的哈希值的哈希算法。
返回
true 如果签名有效,则为否则,为 false.
例外
适用于
VerifyData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, HashAlgorithmName)
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据。
public:
virtual bool VerifyData(ReadOnlySpan<System::Byte> data, ReadOnlySpan<System::Byte> signature, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public virtual bool VerifyData(ReadOnlySpan<byte> data, ReadOnlySpan<byte> signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
abstract member VerifyData : ReadOnlySpan<byte> * ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName -> bool
override this.VerifyData : ReadOnlySpan<byte> * ReadOnlySpan<byte> * System.Security.Cryptography.HashAlgorithmName -> bool
Public Overridable Function VerifyData (data As ReadOnlySpan(Of Byte), signature As ReadOnlySpan(Of Byte), hashAlgorithm As HashAlgorithmName) As Boolean
参数
- data
- ReadOnlySpan<Byte>
已签名的数据。
- signature
- ReadOnlySpan<Byte>
要验证的签名。
- hashAlgorithm
- HashAlgorithmName
用于创建数据的哈希值的哈希算法。
返回
true 如果签名有效,则为否则,为 false.
例外
适用于
VerifyData(Byte[], Int32, Int32, Byte[], HashAlgorithmName)
验证数字签名是否适合当前密钥,并使用指定的哈希算法提供的数据部分。
public:
virtual bool VerifyData(cli::array <System::Byte> ^ data, int offset, int count, cli::array <System::Byte> ^ signature, System::Security::Cryptography::HashAlgorithmName hashAlgorithm);
public virtual bool VerifyData(byte[] data, int offset, int count, byte[] signature, System.Security.Cryptography.HashAlgorithmName hashAlgorithm);
abstract member VerifyData : byte[] * int * int * byte[] * System.Security.Cryptography.HashAlgorithmName -> bool
override this.VerifyData : byte[] * int * int * byte[] * System.Security.Cryptography.HashAlgorithmName -> bool
Public Overridable Function VerifyData (data As Byte(), offset As Integer, count As Integer, signature As Byte(), hashAlgorithm As HashAlgorithmName) As Boolean
参数
- data
- Byte[]
已签名的数据。
- offset
- Int32
计算哈希的起始索引。
- count
- Int32
要哈希的字节数。
- signature
- Byte[]
要验证的签名数据。
- hashAlgorithm
- HashAlgorithmName
用于创建数据的哈希值的哈希算法。
返回
true 如果签名有效,则为否则,为 false.