System::Security::Cryptography::RSACryptoServiceProvider::Decrypt method
Contents
[
Hide
]RSACryptoServiceProvider::Decrypt(ByteArrayPtr, SharedPtr<RSAEncryptionPadding>) method
Decrypts input data using the specified padding mode.
ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::Decrypt(ByteArrayPtr data, SharedPtr<RSAEncryptionPadding> padding) override
Parameter | Type | Description |
---|---|---|
data | ByteArrayPtr | Byte array to decrypt. |
padding | SharedPtr<RSAEncryptionPadding> | Padding mode. |
ReturnValue
Decrypted data in byte array format.
See Also
- Typedef ByteArrayPtr
- Typedef SharedPtr
- Class RSAEncryptionPadding
- Class RSACryptoServiceProvider
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++
RSACryptoServiceProvider::Decrypt(const ByteArrayPtr&, bool) method
Decrypts message. Not implemented.
ByteArrayPtr System::Security::Cryptography::RSACryptoServiceProvider::Decrypt(const ByteArrayPtr &rgb, bool use_oaep)
Parameter | Type | Description |
---|---|---|
rgb | const ByteArrayPtr& | Data to decrypt. |
use_oaep | bool | True to use OAEP padding, false to use PKCS#1 v1.5 padding. |
ReturnValue
Decrypted data array.
See Also
- Typedef ByteArrayPtr
- Class RSACryptoServiceProvider
- Namespace System::Security::Cryptography
- Library Aspose.PUB for C++