Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CryptoConfig::AddAlgorithm Method (Type^, array<String^>^)

.NET Framework (current version)
 

Adds a set of names to algorithm mappings to be used for the current application domain.

Namespace:   System.Security.Cryptography
Assembly:  mscorlib (in mscorlib.dll)

public:
[SecurityCriticalAttribute]
static void AddAlgorithm(
	Type^ algorithm,
	... array<String^>^ names
)

Parameters

algorithm
Type: System::Type^

The algorithm to map to.

names
Type: array<System::String^>^

An array of names to map to the algorithm.

Exception Condition
ArgumentNullException

The algorithm or names parameter is null.

ArgumentException

algorithm cannot be accessed from outside the assembly.

-or-

One of the entries in the names parameter is empty or null.

The specified mappings take precedence over the built-in mappings and the mappings in the machine.config file. The mappings are used to prevent partially trust code from using trusted cryptographic operations.

SecurityCriticalAttribute

requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

.NET Framework
Available since 4.0
Return to top
Show:
© 2017 Microsoft