summary refs log tree commit diff
path: root/crypto/src/tls/TlsServerCertificate.cs
blob: bea896af7fd5b0ab69345d76b970928553b9c7c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Org.BouncyCastle.Tls
{
    /// <summary>Server certificate carrier interface.</summary>
    public interface TlsServerCertificate
    {
        Certificate Certificate { get; }

        CertificateStatus CertificateStatus { get; }
    }
}