2 implementations of ILoaderPal
System.Security.Cryptography (2)
System\Security\Cryptography\X509Certificates\CertCollectionLoader.cs (1)
11internal sealed class CertCollectionLoader : ILoaderPal
System\Security\Cryptography\X509Certificates\OpenSslSingleCertLoader.cs (1)
9internal sealed class OpenSslSingleCertLoader : ILoaderPal
10 references to ILoaderPal
System.Security.Cryptography (10)
System\Security\Cryptography\X509Certificates\StorePal.cs (2)
12internal static partial ILoaderPal FromBlob( 17internal static partial ILoaderPal FromFile(
System\Security\Cryptography\X509Certificates\StorePal.OpenSsl.cs (3)
20internal static partial ILoaderPal FromBlob(ReadOnlySpan<byte> rawData, SafePasswordHandle password, X509KeyStorageFlags keyStorageFlags) 53internal static partial ILoaderPal FromFile(string fileName, SafePasswordHandle password, X509KeyStorageFlags keyStorageFlags) 65private static ILoaderPal FromBio(
System\Security\Cryptography\X509Certificates\X509Certificate2Collection.cs (5)
155using (ILoaderPal storePal = StorePal.FromBlob(rawData, safePasswordHandle, X509KeyStorageFlags.DefaultKeySet)) 202using (ILoaderPal storePal = StorePal.FromBlob(rawData, safePasswordHandle, keyStorageFlags)) 213using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, X509KeyStorageFlags.DefaultKeySet)) 226using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, keyStorageFlags)) 251using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, keyStorageFlags))