summary refs log tree commit diff
path: root/crypto/src/pkix/PkixCertPathValidator.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-02-14 19:10:46 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-02-14 19:10:46 +0700
commita443719f81481e83760aeb7b9a64589f62ef140d (patch)
tree344d1f13e87ed418aaf2d0c7984997323ab69a40 /crypto/src/pkix/PkixCertPathValidator.cs
parentUpdate WrapperUtilities algorithms (diff)
downloadBouncyCastle.NET-ed25519-a443719f81481e83760aeb7b9a64589f62ef140d.tar.xz
Avoid unnecessary recoding
Diffstat (limited to 'crypto/src/pkix/PkixCertPathValidator.cs')
-rw-r--r--crypto/src/pkix/PkixCertPathValidator.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/src/pkix/PkixCertPathValidator.cs b/crypto/src/pkix/PkixCertPathValidator.cs
index 0c585f520..431ed8c6d 100644
--- a/crypto/src/pkix/PkixCertPathValidator.cs
+++ b/crypto/src/pkix/PkixCertPathValidator.cs
@@ -425,6 +425,7 @@ namespace Org.BouncyCastle.Pkix
 
         internal static void CheckCertificate(X509Certificate cert)
         {
+            // TODO What check is this method trying to achieve?
             try
             {
                 TbsCertificateStructure.GetInstance(cert.CertificateStructure.TbsCertificate);