blob: 78bc4d3b90c87e1818475fc61cf53174dfd20f06 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
using System;
using System.Collections.Generic;
using Org.BouncyCastle.Tls.Crypto;
namespace Org.BouncyCastle.Tls
{
public sealed class CertificateEntry
{
private readonly TlsCertificate m_certificate;
private readonly IDictionary<int, byte[]> m_extensions;
public CertificateEntry(TlsCertificate certificate, IDictionary<int, byte[]> 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<int, byte[]> Extensions
{
get { return m_extensions; }
}
}
}
|