System::Security::Cryptography::RSA::VerifyData method
Contents
[
Hide
]RSA::VerifyData(const ByteArrayPtr&, const ByteArrayPtr&, const HashAlgorithmName&, const SharedPtr<RSASignaturePadding>&) method
Verifies that the signature of the specified data is valid.
bool System::Security::Cryptography::RSA::VerifyData(const ByteArrayPtr &data, const ByteArrayPtr &signature, const HashAlgorithmName &hash_algorithm, const SharedPtr<RSASignaturePadding> &padding)
Parameter | Type | Description |
---|---|---|
data | const ByteArrayPtr& | Signed data. |
signature | const ByteArrayPtr& | Signature data. |
hash_algorithm | const HashAlgorithmName& | Hash algorithm. |
padding | const SharedPtr<RSASignaturePadding>& | Padding mode. return true if signature is valid, otherwise - false. |
See Also
- Typedef ByteArrayPtr
- Typedef SharedPtr
- Class RSASignaturePadding
- Class RSA
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++
RSA::VerifyData(const ByteArrayPtr&, int32_t, int32_t, const ByteArrayPtr&, const HashAlgorithmName&, const SharedPtr<RSASignaturePadding>&) method
Verifies that the signature of the specified data is valid.
bool System::Security::Cryptography::RSA::VerifyData(const ByteArrayPtr &data, int32_t offset, int32_t count, const ByteArrayPtr &signature, const HashAlgorithmName &hash_algorithm, const SharedPtr<RSASignaturePadding> &padding)
Parameter | Type | Description |
---|---|---|
data | const ByteArrayPtr& | Signed data. |
offset | int32_t | Offset in data. |
count | int32_t | Number of bytes to hash. |
signature | const ByteArrayPtr& | Signature data. |
hash_algorithm | const HashAlgorithmName& | Hash algorithm. |
padding | const SharedPtr<RSASignaturePadding>& | Padding mode. return true if signature is valid, otherwise - false. |
See Also
- Typedef ByteArrayPtr
- Typedef SharedPtr
- Class RSASignaturePadding
- Class RSA
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++
RSA::VerifyData(const StreamPtr&, const ByteArrayPtr&, const HashAlgorithmName&, const SharedPtr<RSASignaturePadding>&) method
Verifies that the signature of the specified binary stream is valid.
bool System::Security::Cryptography::RSA::VerifyData(const StreamPtr &stream, const ByteArrayPtr &signature, const HashAlgorithmName &hash_algorithm, const SharedPtr<RSASignaturePadding> &padding)
Parameter | Type | Description |
---|---|---|
stream | const StreamPtr& | Signed data. |
signature | const ByteArrayPtr& | Signature data. |
hash_algorithm | const HashAlgorithmName& | Hash algorithm. |
padding | const SharedPtr<RSASignaturePadding>& | Padding mode. return true if signature is valid, otherwise - false. |
See Also
- Typedef StreamPtr
- Typedef ByteArrayPtr
- Typedef SharedPtr
- Class RSASignaturePadding
- Class RSA
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++