summary refs log tree commit diff
path: root/crypto/src/asn1/x509/CertificateList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/x509/CertificateList.cs')
-rw-r--r--crypto/src/asn1/x509/CertificateList.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/crypto/src/asn1/x509/CertificateList.cs b/crypto/src/asn1/x509/CertificateList.cs
index 0412e0816..567cf132a 100644
--- a/crypto/src/asn1/x509/CertificateList.cs
+++ b/crypto/src/asn1/x509/CertificateList.cs
@@ -80,7 +80,12 @@ namespace Org.BouncyCastle.Asn1.X509
 			get { return sig; }
 		}
 
-		public int Version
+        public byte[] GetSignatureOctets()
+        {
+            return sig.GetOctets();
+        }
+
+        public int Version
 		{
 			get { return tbsCertList.Version; }
 		}