System::Security::Cryptography::RSACryptoServiceProvider::SignHash method
Contents
[
Hide
]RSACryptoServiceProvider::SignHash(ByteArrayPtr, HashAlgorithmName, SharedPtr<RSASignaturePadding>) method
Computes the signature for the specified hash value.
ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignHash(ByteArrayPtr hash, HashAlgorithmName hash_algorithm, SharedPtr<RSASignaturePadding> padding) override
Parameter | Type | Description |
---|---|---|
hash | ByteArrayPtr | Hash value. |
hash_algorithm | HashAlgorithmName | Hash algorithm. |
padding | SharedPtr<RSASignaturePadding> | Padding mode. return RSA signature for the specified hash. |
See Also
- Typedef ByteArrayPtr
- Typedef SharedPtr
- Class RSASignaturePadding
- Class RSACryptoServiceProvider
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++
RSACryptoServiceProvider::SignHash(const ByteArrayPtr&, const String&) method
Computes the signature of specified input value. Not implemented.
ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignHash(const ByteArrayPtr &rgb_hash, const String &str)
Parameter | Type | Description |
---|---|---|
rgb_hash | const ByteArrayPtr& | Hash value of data to be signed. |
str | const String& | Hash algorithm identifier used to create the hash. |
ReturnValue
RSA signature for specified data.
See Also
- Typedef ByteArrayPtr
- Class String
- Class RSACryptoServiceProvider
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++