Rijndael.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a cryptographic object to perform the Rijndael algorithm.
Overloads
| Name | Description |
|---|---|
| Create() |
Creates a cryptographic object to perform the Rijndael algorithm. |
| Create(String) |
Creates a cryptographic object to perform the specified implementation of the Rijndael algorithm. |
Create()
Creates a cryptographic object to perform the Rijndael algorithm.
public:
static System::Security::Cryptography::Rijndael ^ Create();
public static System.Security.Cryptography.Rijndael Create();
static member Create : unit -> System.Security.Cryptography.Rijndael
Public Shared Function Create () As Rijndael
Returns
A cryptographic object.
Exceptions
The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.
Remarks
The default implementation of Rijndael is RijndaelManaged.
See also
Applies to
Create(String)
Creates a cryptographic object to perform the specified implementation of the Rijndael algorithm.
public:
static System::Security::Cryptography::Rijndael ^ Create(System::String ^ algName);
public static System.Security.Cryptography.Rijndael Create(string algName);
static member Create : string -> System.Security.Cryptography.Rijndael
Public Shared Function Create (algName As String) As Rijndael
Parameters
Returns
A cryptographic object.
Exceptions
The algorithm described by the algName parameter was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.
Remarks
Acceptable values for the algName parameter are Rijndael and System.Security.Cryptography.RijndaelManaged.