43 references to CreateFromName
mscorlib (32)
system\security\cryptography\aes.cs (1)
45return CryptoConfig.CreateFromName(algorithmName) as Aes;
system\security\cryptography\asymmetricalgorithm.cs (1)
100return (AsymmetricAlgorithm) CryptoConfig.CreateFromName(algName);
system\security\cryptography\des.cs (1)
79return (DES) CryptoConfig.CreateFromName(algName);
system\security\cryptography\dsa.cs (3)
60return (DSA) CryptoConfig.CreateFromName(algName); 64DSA dsa = (DSA)CryptoConfig.CreateFromName("DSA-FIPS186-3"); 75DSA dsa = (DSA)CryptoConfig.CreateFromName("DSA-FIPS186-3");
system\security\cryptography\hashalgorithm.cs (1)
54return (HashAlgorithm) CryptoConfig.CreateFromName(hashName);
system\security\cryptography\hmac.cs (1)
125return (HMAC) CryptoConfig.CreateFromName(algorithmName);
system\security\cryptography\keyedhashalgorithm.cs (1)
53return (KeyedHashAlgorithm) CryptoConfig.CreateFromName(algName);
system\security\cryptography\md5.cs (1)
30return (MD5) CryptoConfig.CreateFromName(algName);
system\security\cryptography\passwordderivebytes.cs (1)
99_hash = (HashAlgorithm) CryptoConfig.CreateFromName(_hashName);
system\security\cryptography\pkcs1maskgenerationmethod.cs (1)
43HashAlgorithm hash = (HashAlgorithm) CryptoConfig.CreateFromName(HashNameValue);
system\security\cryptography\randomnumbergenerator.cs (1)
38return (RandomNumberGenerator) CryptoConfig.CreateFromName(rngName);
system\security\cryptography\rc2.cs (1)
79return (RC2) CryptoConfig.CreateFromName(AlgName);
system\security\cryptography\rijndael.cs (1)
48return (Rijndael) CryptoConfig.CreateFromName(algName);
system\security\cryptography\ripemd160.cs (1)
36return (RIPEMD160) CryptoConfig.CreateFromName(hashName);
system\security\cryptography\rsa.cs (3)
58return (RSA) CryptoConfig.CreateFromName(algName); 62RSA rsa = (RSA)CryptoConfig.CreateFromName("RSAPSS"); 73RSA rsa = (RSA)CryptoConfig.CreateFromName("RSAPSS");
system\security\cryptography\sha1.cs (1)
30return (SHA1) CryptoConfig.CreateFromName(hashName);
system\security\cryptography\sha256.cs (1)
36return (SHA256) CryptoConfig.CreateFromName(hashName);
system\security\cryptography\sha384.cs (1)
36return (SHA384) CryptoConfig.CreateFromName(hashName);
system\security\cryptography\sha512.cs (1)
36return (SHA512) CryptoConfig.CreateFromName(hashName);
system\security\cryptography\signaturedescription.cs (3)
68item = (AsymmetricSignatureDeformatter) CryptoConfig.CreateFromName(_strDeformatter); 76item = (AsymmetricSignatureFormatter) CryptoConfig.CreateFromName(_strFormatter); 82return (HashAlgorithm) CryptoConfig.CreateFromName(_strDigest);
system\security\cryptography\symmetricalgorithm.cs (1)
224return (SymmetricAlgorithm) CryptoConfig.CreateFromName(algName);
system\security\cryptography\tripledes.cs (1)
75return (TripleDES) CryptoConfig.CreateFromName(str);
system\security\cryptography\utils.cs (3)
606hash = (HashAlgorithm) CryptoConfig.CreateFromName((string) hashAlg); 610hash = (HashAlgorithm) CryptoConfig.CreateFromName(oidFriendlyName); 617hash = (HashAlgorithm) CryptoConfig.CreateFromName(hashAlg.ToString());
system\security\cryptography\x509certificates\x509certificate.cs (1)
335using (HashAlgorithm hash = CryptoConfig.CreateFromName(hashAlgorithm.Name) as HashAlgorithm) {
System (2)
security\system\security\cryptography\x509\x509chain.cs (1)
93return (X509Chain) CryptoConfig.CreateFromName("X509Chain");
security\system\security\cryptography\x509\x509extension.cs (1)
612X509Extension customExtension = CryptoConfig.CreateFromName(extension.Oid.Value) as X509Extension;
System.Core (2)
System\Security\Cryptography\ECDiffieHellman.cs (1)
37return CryptoConfig.CreateFromName(algorithm) as ECDiffieHellman;
System\Security\Cryptography\ECDsa.cs (1)
37return CryptoConfig.CreateFromName(algorithm) as ECDsa;
System.IdentityModel (1)
System\IdentityModel\CryptoHelper.cs (1)
1259algorithmObject = CryptoConfig.CreateFromName(algorithm);
System.Security (3)
system\security\cryptography\pkcs\pkcsutils.cs (1)
575Pkcs9AttributeObject customAttribute = CryptoConfig.CreateFromName(szOid) as Pkcs9AttributeObject;
system\security\cryptography\xml\utils.cs (2)
465return CryptoConfig.CreateFromName(key) as T; 475return CryptoConfig.CreateFromName(key) as T;
System.Web (2)
Compilation\AssemblyBuilder.cs (1)
668using (HashAlgorithm ha = (HashAlgorithm)CryptoConfig.CreateFromName(hashAlgorithm)) {
Security\Cryptography\MachineKeyCryptoAlgorithmFactory.cs (1)
102return (TResult)CryptoConfig.CreateFromName(algorithmName);
WindowsBase (1)
Base\MS\Internal\IO\Packaging\XmlDigitalSignatureProcessor.cs (1)
573Object o = CryptoConfig.CreateFromName(hashAlgorithmName);