3 overrides of IsExportable
Templates.Tests (3)
src\Shared\CertificateGeneration\MacOSCertificateManager.cs (1)
305internal override bool IsExportable(X509Certificate2 c) => true;
src\Shared\CertificateGeneration\UnixCertificateManager.cs (1)
182internal override bool IsExportable(X509Certificate2 c) => true;
src\Shared\CertificateGeneration\WindowsCertificateManager.cs (1)
30internal override bool IsExportable(X509Certificate2 c)
2 references to IsExportable
Templates.Tests (2)
src\Shared\CertificateGeneration\CertificateManager.cs (2)
190(!requireExportable || IsExportable(certificate)) && 897$"{c.Thumbprint} - {c.Subject} - Valid from {c.NotBefore:u} to {c.NotAfter:u} - IsHttpsDevelopmentCertificate: {IsHttpsDevelopmentCertificate(c).ToString().ToLowerInvariant()} - IsExportable: {Instance.IsExportable(c).ToString().ToLowerInvariant()}";