Esempio n. 1
0
 public static SymmetricAlgorithm?Create(string algName) =>
 (SymmetricAlgorithm?)CryptoConfigForwarder.CreateFromName(algName);
Esempio n. 2
0
 public static HashAlgorithm?Create(string hashName) =>
 (HashAlgorithm?)CryptoConfigForwarder.CreateFromName(hashName);
Esempio n. 3
0
 public static HashAlgorithm Create() =>
 CryptoConfigForwarder.CreateDefaultHashAlgorithm();
Esempio n. 4
0
 public static AsymmetricAlgorithm?Create(string algName) =>
 CryptoConfigForwarder.CreateFromName <AsymmetricAlgorithm>(algName);
Esempio n. 5
0
 public static new KeyedHashAlgorithm?Create(string algName) =>
 CryptoConfigForwarder.CreateFromName <KeyedHashAlgorithm>(algName);
 public static new KeyedHashAlgorithm Create(string algName) =>
 (KeyedHashAlgorithm)CryptoConfigForwarder.CreateFromName(algName);