9 lines
213 B
C#
9 lines
213 B
C#
namespace Org.BouncyCastle.Crypto.Tls;
|
|
|
|
public interface TlsSignerCredentials : TlsCredentials
|
|
{
|
|
SignatureAndHashAlgorithm SignatureAndHashAlgorithm { get; }
|
|
|
|
byte[] GenerateCertificateSignature(byte[] hash);
|
|
}
|