System.Security.Cryptography.CryptoConfig.AddAlgorithm C# (CSharp) Method

AddAlgorithm() public static method

public static AddAlgorithm ( Type algorithm ) : void
algorithm Type
return void
        public static void AddAlgorithm(Type algorithm, params string[] names)
        {
            throw new PlatformNotSupportedException();
        }

Usage Example

Example #1
0
 static MD4()
 {
     CryptoConfig.AddAlgorithm(typeof(MD4CryptoServiceProvider), "System.Security.Cryptography.MD4");
 }
All Usage Examples Of System.Security.Cryptography.CryptoConfig::AddAlgorithm