10 references to StaticProvHandle
mscorlib (10)
system\security\cryptography\md5cryptoserviceprovider.cs (2)
35_safeHashHandle = Utils.CreateHash(Utils.StaticProvHandle, Constants.CALG_MD5); 56_safeHashHandle = Utils.CreateHash(Utils.StaticProvHandle, Constants.CALG_MD5);
system\security\cryptography\rngcryptoserviceprovider.cs (1)
60m_safeProvHandle = Utils.StaticProvHandle;
system\security\cryptography\rsacryptoserviceprovider.cs (3)
286Utils._ImportKey(Utils.StaticProvHandle, Constants.CALG_RSA_KEYX, (CspProviderFlags) 0, rsaCspObject, ref _safeKeyHandle); 527using (SafeHashHandle hashHandle = Utils.CreateHash(Utils.StaticProvHandle, GetAlgorithmId(hashAlgorithm))) { 539using (SafeHashHandle hashHandle = Utils.CreateHash(Utils.StaticProvHandle, GetAlgorithmId(hashAlgorithm))) {
system\security\cryptography\sha1cryptoserviceprovider.cs (2)
27_safeHashHandle = Utils.CreateHash(Utils.StaticProvHandle, Constants.CALG_SHA1); 49_safeHashHandle = Utils.CreateHash(Utils.StaticProvHandle, Constants.CALG_SHA1);
system\security\cryptography\utils.cs (2)
426parameters.KeyNumber = Utils._ImportCspBlob(keyBlob, keyType == CspAlgorithmType.Dss ? Utils.StaticDssProvHandle : Utils.StaticProvHandle, (CspProviderFlags) 0, ref safeKeyHandle); 569r = SearchForAlgorithm(StaticProvHandle, dwCalg, dwKeySize);