4 implementations of ILoaderPal
System.Security.Cryptography (4)
System\Security\Cryptography\X509Certificates\StorePal.cs (1)
33internal sealed class CollectionBasedLoader : ILoaderPal
System\Security\Cryptography\X509Certificates\StorePal.Windows.cs (1)
11internal sealed partial class StorePal : IDisposable, IStorePal, IExportPal, ILoaderPal
System\Security\Cryptography\X509Certificates\StorePal.Windows.Export.cs (1)
12internal sealed partial class StorePal : IDisposable, IStorePal, IExportPal, ILoaderPal
System\Security\Cryptography\X509Certificates\StorePal.Windows.Import.cs (1)
11internal sealed partial class StorePal : IDisposable, IStorePal, IExportPal, 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.Windows.Import.cs (3)
13internal static partial ILoaderPal FromBlob(ReadOnlySpan<byte> rawData, SafePasswordHandle password, X509KeyStorageFlags keyStorageFlags) 18internal static partial ILoaderPal FromFile(string fileName, SafePasswordHandle password, X509KeyStorageFlags keyStorageFlags) 23private static ILoaderPal FromBlobOrFile(ReadOnlySpan<byte> rawData, string? fileName, SafePasswordHandle password, X509KeyStorageFlags keyStorageFlags)
System\Security\Cryptography\X509Certificates\X509Certificate2Collection.cs (5)
221using (ILoaderPal storePal = StorePal.FromBlob(rawData, SafePasswordHandle.InvalidHandle, X509KeyStorageFlags.DefaultKeySet)) 271using (ILoaderPal storePal = StorePal.FromBlob(rawData, safePasswordHandle, keyStorageFlags)) 282using (ILoaderPal storePal = StorePal.FromFile(fileName, SafePasswordHandle.InvalidHandle, X509KeyStorageFlags.DefaultKeySet)) 296using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, keyStorageFlags)) 322using (ILoaderPal storePal = StorePal.FromFile(fileName, safePasswordHandle, keyStorageFlags))