summary refs log tree commit diff
path: root/crypto/src/pkix/PkixNameConstraintValidator.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-01-30 18:37:42 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-01-30 18:37:42 +0700
commit69881d436e64f0d8320ab8776685f5a228789514 (patch)
tree3cd32a90d734c89ee0ee516d39106015b4a2a2e6 /crypto/src/pkix/PkixNameConstraintValidator.cs
parentEnsure configured SecureRandom is passed on (diff)
downloadBouncyCastle.NET-ed25519-69881d436e64f0d8320ab8776685f5a228789514.tar.xz
Change method names
Diffstat (limited to 'crypto/src/pkix/PkixNameConstraintValidator.cs')
-rw-r--r--crypto/src/pkix/PkixNameConstraintValidator.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/crypto/src/pkix/PkixNameConstraintValidator.cs b/crypto/src/pkix/PkixNameConstraintValidator.cs
index 879054c7f..7a9e3f45e 100644
--- a/crypto/src/pkix/PkixNameConstraintValidator.cs
+++ b/crypto/src/pkix/PkixNameConstraintValidator.cs
@@ -1366,10 +1366,10 @@ namespace Org.BouncyCastle.Pkix
         }
 
         /// <exception cref="PkixNameConstraintValidatorException"/>
-        [Obsolete("Use 'CheckPermitted' instead")]
+        [Obsolete("Use 'CheckPermittedName' instead")]
         public void checkPermitted(GeneralName name)
         {
-            CheckPermitted(name);
+            CheckPermittedName(name);
         }
 
         /**
@@ -1380,7 +1380,7 @@ namespace Org.BouncyCastle.Pkix
          *          If the <code>name</code>
          */
         /// <exception cref="PkixNameConstraintValidatorException"/>
-        public void CheckPermitted(GeneralName name)
+        public void CheckPermittedName(GeneralName name)
         {
             switch (name.TagNo)
             {
@@ -1406,10 +1406,10 @@ namespace Org.BouncyCastle.Pkix
         }
 
         /// <exception cref="PkixNameConstraintValidatorException"/>
-        [Obsolete("Use 'CheckExcluded' instead")]
+        [Obsolete("Use 'CheckExcludedName' instead")]
         public void checkExcluded(GeneralName name)
         {
-            CheckExcluded(name);
+            CheckExcludedName(name);
         }
 
         /**
@@ -1421,7 +1421,7 @@ namespace Org.BouncyCastle.Pkix
          *          excluded.
          */
         /// <exception cref="PkixNameConstraintValidatorException"/>
-        public void CheckExcluded(GeneralName name)
+        public void CheckExcludedName(GeneralName name)
         {
             switch (name.TagNo)
             {