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