summary refs log tree commit diff
path: root/crypto/src/tls/CertificateEntry.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2021-07-12 15:15:36 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2021-07-12 15:15:36 +0700
commit68c795fe81277f73aeb90d8ad4c6f4305f32c906 (patch)
tree59643344aafef91bbd4c4a3a7973deba3d837a00 /crypto/src/tls/CertificateEntry.cs
parentTLS test tweaks (diff)
downloadBouncyCastle.NET-ed25519-68c795fe81277f73aeb90d8ad4c6f4305f32c906.tar.xz
Port of new TLS API from bc-java
Diffstat (limited to 'crypto/src/tls/CertificateEntry.cs')
-rw-r--r--crypto/src/tls/CertificateEntry.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/crypto/src/tls/CertificateEntry.cs b/crypto/src/tls/CertificateEntry.cs
new file mode 100644
index 000000000..b88677536
--- /dev/null
+++ b/crypto/src/tls/CertificateEntry.cs
@@ -0,0 +1,32 @@
+using System;
+using System.Collections;
+
+using Org.BouncyCastle.Tls.Crypto;
+
+namespace Org.BouncyCastle.Tls
+{
+    public sealed class CertificateEntry
+    {
+        private readonly TlsCertificate m_certificate;
+        private readonly IDictionary m_extensions;
+
+        public CertificateEntry(TlsCertificate certificate, IDictionary extensions)
+        {
+            if (null == certificate)
+                throw new ArgumentNullException("certificate");
+
+            this.m_certificate = certificate;
+            this.m_extensions = extensions;
+        }
+
+        public TlsCertificate Certificate
+        {
+            get { return m_certificate; }
+        }
+
+        public IDictionary Extensions
+        {
+            get { return m_extensions; }
+        }
+    }
+}