blob: 4a6084a0792a846010434ff0f64e6dcadaa181af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
namespace Org.BouncyCastle.Tls
{
/// <summary>Base interface for interfaces/classes carrying TLS credentials.</summary>
public interface TlsCredentials
{
/// <summary>Return the certificate structure representing our identity.</summary>
/// <returns>our certificate structure.</returns>
Certificate Certificate { get; }
}
}
|