Create()
Contents
[
Hide
]RSA::Create() method
Creates default RSA aglorithm implementation.
static SharedPtr<RSA> System::Security::Cryptography::RSA::Create()
RSA::Create(const String&) method
Creates default RSA algorithm implementation.
static SharedPtr<RSA> System::Security::Cryptography::RSA::Create(const String &alg_name)
Arguments
Parameter | Type | Description |
---|---|---|
alg_name | const String& | Must be "System.Security.Cryptography.RSACryptoServiceProvider". |
RSA::Create(int32_t) method
Creates default RSA algorithm implementation with specifed key size.
static SharedPtr<RSA> System::Security::Cryptography::RSA::Create(int32_t key_size_in_bits)
Arguments
Parameter | Type | Description |
---|---|---|
key_size_in_bits | int32_t | The key size, in bits. |
RSA::Create(const RSAParameters&) method
Creates default RSA algorithm implementation with specifed parameters.
static SharedPtr<RSA> System::Security::Cryptography::RSA::Create(const RSAParameters ¶meters)
Arguments
Parameter | Type | Description |
---|---|---|
parameters | const RSAParameters& | The parameters for the RSA algorithm. |
See Also
- Typedef SharedPtr
- Class RSA
- Class String
- Struct RSAParameters
- Namespace System::Security::Cryptography
- Library Aspose.Slides