System::Security::Cryptography::RSACryptoServiceProvider::SignData method
Contents
[
Hide
]RSACryptoServiceProvider::SignData(const ByteArrayPtr&, const SharedPtr<Object>&) method
Computes the signature of specified input value.
ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignData(const ByteArrayPtr &buffer, const SharedPtr<Object> &halg)
Parameter | Type | Description |
---|---|---|
buffer | const ByteArrayPtr& | Buffer to read input data from. |
halg | const SharedPtr<Object>& | Hash algorithm to use. |
ReturnValue
RSA signature for specified data.
See Also
- Typedef ByteArrayPtr
- Typedef SharedPtr
- Class Object
- Class RSACryptoServiceProvider
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++
RSACryptoServiceProvider::SignData(const ByteArrayPtr&, int32_t, int32_t, const SharedPtr<Object>&) method
Computes the signature of specified input value.
ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignData(const ByteArrayPtr &buffer, int32_t offset, int32_t count, const SharedPtr<Object> &halg)
Parameter | Type | Description |
---|---|---|
buffer | const ByteArrayPtr& | Buffer to read input data from. |
offset | int32_t | Input buffer slice beginning index. |
count | int32_t | Input buffer slice size. |
halg | const SharedPtr<Object>& | Hash algorithm to use. |
ReturnValue
RSA signature for specified data.
See Also
- Typedef ByteArrayPtr
- Typedef SharedPtr
- Class Object
- Class RSACryptoServiceProvider
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++
RSACryptoServiceProvider::SignData(const SharedPtr<IO::Stream>&, const SharedPtr<Object>&) method
Computes the signature of specified input value.
ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::SignData(const SharedPtr<IO::Stream> &input_stream, const SharedPtr<Object> &halg)
Parameter | Type | Description |
---|---|---|
input_stream | const SharedPtr<IO::Stream>& | Stream to read data being signed from. |
halg | const SharedPtr<Object>& | Hash algorithm to use. |
ReturnValue
RSA signature for specified data.
See Also
- Typedef ByteArrayPtr
- Typedef SharedPtr
- Class Stream
- Class Object
- Class RSACryptoServiceProvider
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++