From f61a96234d72d9bae255050bb4b372d69c9a1d15 Mon Sep 17 00:00:00 2001 From: Klaus Fischer <klaus.fischer@eloware.com> Date: Tue, 20 Sep 2022 14:04:59 +0200 Subject: [PATCH] Removed dead code --- FitConnect/Encryption/CertificateHelper.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/FitConnect/Encryption/CertificateHelper.cs b/FitConnect/Encryption/CertificateHelper.cs index f162d579..7392d5f8 100644 --- a/FitConnect/Encryption/CertificateHelper.cs +++ b/FitConnect/Encryption/CertificateHelper.cs @@ -31,7 +31,6 @@ public class CertificateHelper { var certificateChain = new X509Chain(); certificateChain.ChainPolicy.ExtraStore.AddRange(extras ?? Array.Empty<X509Certificate2>()); -// certificate.ExportToPem($"./temp/{Guid.NewGuid().ToString()}"); _logger?.LogDebug("Issuers: {Issuer}", certificate.Issuer); if (rootCertificate != null) { @@ -75,13 +74,7 @@ public class CertificateHelper { _logger?.Log(logLevel, "Certificate does not match FIT-Connect requirements"); return false; } - - // var valid = certificates.Aggregate(true, - // (result, cert) => result - // && ValidateCertificate(cert, out _, root, certificates.ToArray(), logLevel) - // // && cert.Verify() - // ); - + var valid = ValidateCertificate(certificates.First(), out _, root, certificates.ToArray(), logLevel); return valid && fitConnectRequirements; -- GitLab