CngAlgorithm(String) Constructor
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.
Initializes a new instance of the CngAlgorithm class.
public:
CngAlgorithm(System::String ^ algorithm);
public CngAlgorithm (string algorithm);
new System.Security.Cryptography.CngAlgorithm : string -> System.Security.Cryptography.CngAlgorithm
Public Sub New (algorithm As String)
Parameters
- algorithm
- String
The name of the algorithm to initialize.
Exceptions
The algorithm
parameter is null
.
The algorithm
parameter length is 0 (zero).
Remarks
Instances of the CngAlgorithm class internally maintain the algorithm name that is specified by the algorithm
parameter.
The primary purpose of this constructor is to provide a method for creating CngAlgorithm objects for algorithm types that are not represented by the static properties of the CngAlgorithm class. This capacity enables future .NET Framework releases, service packs, and third-party developers to add new algorithms, which can be accessed just like the algorithms that are currently available.