using System;
namespace Org.BouncyCastle.Tls
{
/// Base interface for interfaces/classes carrying TLS credentials.
public interface TlsCredentials
{
/// Return the certificate structure representing our identity.
/// our certificate structure.
Certificate Certificate { get; }
}
}