3 implementations of ILoaderPal
System.Security.Cryptography (3)
System\Security\Cryptography\X509Certificates\CertCollectionLoader.cs (1)
11internal sealed class CertCollectionLoader : ILoaderPal
System\Security\Cryptography\X509Certificates\OpenSslSingleCertLoader.cs (1)
9internal sealed class OpenSslSingleCertLoader : ILoaderPal
System\Security\Cryptography\X509Certificates\StorePal.cs (1)
33internal sealed class CollectionBasedLoader : ILoaderPal
10 references to ILoaderPal
System.Security.Cryptography (10)
System\Security\Cryptography\X509Certificates\StorePal.cs (2)
13internal static partial ILoaderPal FromBlob( 18internal static partial ILoaderPal FromFile(
System\Security\Cryptography\X509Certificates\StorePal.OpenSsl.cs (3)
19internal static partial ILoaderPal FromBlob(ReadOnlySpan<byte> rawData, SafePasswordHandle password, X509KeyStorageFlags keyStorageFlags) 62internal static partial ILoaderPal FromFile(string fileName, SafePasswordHandle password, X509KeyStorageFlags keyStorageFlags) 72private static ILoaderPal FromBio(
System\Security\Cryptography\X509Certificates\X509Certificate2Collection.cs (5)
156using (ILoaderPal storePal = StorePal.FromBlob(rawData, SafePasswordHandle.InvalidHandle, X509KeyStorageFlags.DefaultKeySet)) 206using (ILoaderPal storePal = StorePal.FromBlob(rawData, safePasswordHandle, keyStorageFlags)) 217using (ILoaderPal storePal = StorePal.FromFile(fileName, SafePasswordHandle.InvalidHandle, X509KeyStorageFlags.DefaultKeySet)) 231using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, keyStorageFlags)) 257using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, keyStorageFlags))