37 references to X509RevocationFlag
Microsoft.AspNetCore.Authentication.Certificate (5)
CertificateAuthenticationHandler.cs (2)
190X509RevocationFlag revocationFlag = Options.RevocationFlag; 196revocationFlag = X509RevocationFlag.EntireChain;
CertificateAuthenticationOptions.cs (3)
63/// Defaults to <see cref="X509RevocationFlag.ExcludeRoot" />. 65public X509RevocationFlag RevocationFlag { get; set; } = X509RevocationFlag.ExcludeRoot;
Microsoft.DotNet.SignCheckLibrary (1)
Verification\VsixVerifier.cs (1)
164certChain.ChainPolicy.RevocationFlag = X509RevocationFlag.ExcludeRoot;
netstandard (1)
netstandard.cs (1)
1977[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.X509Certificates.X509RevocationFlag))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
884[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.X509Certificates.X509RevocationFlag))]
System.Net.Quic (3)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.X509.cs (2)
169private static partial bool CryptoNative_X509StoreSetRevocationFlag(SafeX509StoreHandle ctx, X509RevocationFlag revocationFlag); 171internal static void X509StoreSetRevocationFlag(SafeX509StoreHandle ctx, X509RevocationFlag revocationFlag)
System\Net\Quic\QuicConnection.SslConnectionOptions.cs (1)
194chain.ChainPolicy.RevocationFlag = X509RevocationFlag.ExcludeRoot;
System.Net.Security (3)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.X509.cs (2)
169private static partial bool CryptoNative_X509StoreSetRevocationFlag(SafeX509StoreHandle ctx, X509RevocationFlag revocationFlag); 171internal static void X509StoreSetRevocationFlag(SafeX509StoreHandle ctx, X509RevocationFlag revocationFlag)
System\Net\Security\SslStream.Protocol.cs (1)
1077chain.ChainPolicy.RevocationFlag = X509RevocationFlag.ExcludeRoot;
System.Security.Cryptography (21)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.X509.cs (2)
169private static partial bool CryptoNative_X509StoreSetRevocationFlag(SafeX509StoreHandle ctx, X509RevocationFlag revocationFlag); 171internal static void X509StoreSetRevocationFlag(SafeX509StoreHandle ctx, X509RevocationFlag revocationFlag)
System\Security\Cryptography\X509Certificates\ChainPal.cs (1)
19X509RevocationFlag revocationFlag,
System\Security\Cryptography\X509Certificates\ChainPal.OpenSsl.cs (2)
37X509RevocationFlag revocationFlag, 81X509RevocationFlag revocationFlag,
System\Security\Cryptography\X509Certificates\ManagedCertificateFinder.cs (1)
367RevocationFlag = X509RevocationFlag.ExcludeRoot
System\Security\Cryptography\X509Certificates\OpenSslX509ChainEventSource.cs (1)
706internal void RevocationCheckStart(X509RevocationMode revocationMode, X509RevocationFlag revocationFlag, int chainSize)
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (9)
356X509RevocationFlag revocationFlag) 372case X509RevocationFlag.EndCertificateOnly: 375case X509RevocationFlag.ExcludeRoot: 379Debug.Assert(revocationFlag == X509RevocationFlag.EntireChain); 437X509RevocationFlag revocationFlag, 469if (revocationFlag == X509RevocationFlag.EndCertificateOnly && chainSize > 1) 518Debug.Assert(chainSize == 1 || revocationFlag != X509RevocationFlag.EndCertificateOnly); 525if (encounteredRevocation && revocationFlag == X509RevocationFlag.ExcludeRoot) 530else if (refErrors.HasRevocationUnknown() && revocationFlag != X509RevocationFlag.ExcludeRoot)
System\Security\Cryptography\X509Certificates\X509ChainPolicy.cs (5)
9private X509RevocationFlag _revocationFlag; 67public X509RevocationFlag RevocationFlag 75if (value < X509RevocationFlag.EndCertificateOnly || value > X509RevocationFlag.ExcludeRoot) 129_revocationFlag = X509RevocationFlag.ExcludeRoot;
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\SignerInfo.cs (1)
712chain.ChainPolicy.RevocationFlag = X509RevocationFlag.ExcludeRoot;
System.Security.Cryptography.X509Certificates (1)
System.Security.Cryptography.X509Certificates.cs (1)
41[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.X509Certificates.X509RevocationFlag))]