3 references to HasSubjectKeyIdentifier
aspire (3)
Certificates\NativeCertificateToolRunner.cs (2)
213
if (validCertificates.Any(c => c.
HasSubjectKeyIdentifier
()))
215
validCertificates = validCertificates.Where(c => c.
HasSubjectKeyIdentifier
()).ToList();
src\Shared\X509Certificate2Extensions.cs (1)
101
foreach (var certificate in store.Certificates.Where(c => !c.MatchesHostname("localhost") || c.
HasSubjectKeyIdentifier
()))