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