System.Security.Cryptography.CryptoConfig
namespace System.Security.Cryptography
{
public class CryptoConfig
{
public static bool AllowOnlyFipsAlgorithms { get; }
public CryptoConfig();
public static void AddAlgorithm(Type algorithm, params string[] names);
public static void AddOID(string oid, params string[] names);
public static object CreateFromName(string name);
public static object CreateFromName(string name, params object[] args);
public static byte[] EncodeOID(string str);
public static string MapNameToOID(string name);
}
}