You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
589 B
20 lines
589 B
using System;
|
|
using System.IO;
|
|
|
|
namespace Org.BouncyCastle.Crypto.Tls
|
|
{
|
|
public abstract class AbstractTlsSignerCredentials
|
|
: AbstractTlsCredentials, TlsSignerCredentials
|
|
{
|
|
/// <exception cref="IOException"></exception>
|
|
public abstract byte[] GenerateCertificateSignature(byte[] hash);
|
|
|
|
public virtual SignatureAndHashAlgorithm SignatureAndHashAlgorithm
|
|
{
|
|
get
|
|
{
|
|
throw new InvalidOperationException("TlsSignerCredentials implementation does not support (D)TLS 1.2+");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|