summary refs log tree commit diff
path: root/crypto/src/x509/store/X509CertStoreSelector.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/x509/store/X509CertStoreSelector.cs')
-rw-r--r--crypto/src/x509/store/X509CertStoreSelector.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/crypto/src/x509/store/X509CertStoreSelector.cs b/crypto/src/x509/store/X509CertStoreSelector.cs
index a153868d4..684edeb38 100644
--- a/crypto/src/x509/store/X509CertStoreSelector.cs
+++ b/crypto/src/x509/store/X509CertStoreSelector.cs
@@ -60,6 +60,9 @@ namespace Org.BouncyCastle.X509.Store
 			return new X509CertStoreSelector(this);
 		}
 
+        /// <remarks>
+		/// A DER encoding of an ASN.1 AuthorityKeyIdentifier value.
+        /// </remarks>
 		public byte[] AuthorityKeyIdentifier
 		{
 			get { return Arrays.Clone(authorityKeyIdentifier); }
@@ -141,7 +144,10 @@ namespace Org.BouncyCastle.X509.Store
 			set { subject = value; }
 		}
 
-		public byte[] SubjectKeyIdentifier
+        /// <remarks>
+		/// A DER encoding of an ASN.1 SubjectKeyIdentifier (OCTET STRING) value.
+        /// </remarks>
+        public byte[] SubjectKeyIdentifier
 		{
 			get { return Arrays.Clone(subjectKeyIdentifier); }
 			set { subjectKeyIdentifier = Arrays.Clone(value); }