summary refs log tree commit diff
path: root/crypto/src/x509/X509V3CertificateGenerator.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2023-11-20 11:15:29 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2023-11-20 11:15:29 +0700
commit00dd4d535935ab164709451e962c53c897b47215 (patch)
treed33126d5ba3617df421e424578bb03012d8e53be /crypto/src/x509/X509V3CertificateGenerator.cs
parentRefactoring in DRBG classes (diff)
downloadBouncyCastle.NET-ed25519-00dd4d535935ab164709451e962c53c897b47215.tar.xz
Implement SetIssuerUniqueId
Diffstat (limited to 'crypto/src/x509/X509V3CertificateGenerator.cs')
-rw-r--r--crypto/src/x509/X509V3CertificateGenerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/x509/X509V3CertificateGenerator.cs b/crypto/src/x509/X509V3CertificateGenerator.cs
index 229508e67..ea773bb1b 100644
--- a/crypto/src/x509/X509V3CertificateGenerator.cs
+++ b/crypto/src/x509/X509V3CertificateGenerator.cs
@@ -315,7 +315,7 @@ namespace Org.BouncyCastle.X509
 		/// </summary>
 		public IEnumerable<string> SignatureAlgNames => X509Utilities.GetAlgNames();
 
-        private static DerBitString BooleanToBitString(bool[] id)
+        internal static DerBitString BooleanToBitString(bool[] id)
         {
             int byteLength = (id.Length + 7) / 8;