summary refs log tree commit diff
path: root/crypto/src/tls/crypto/impl/bc/BcTlsSigner.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/tls/crypto/impl/bc/BcTlsSigner.cs')
-rw-r--r--crypto/src/tls/crypto/impl/bc/BcTlsSigner.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/src/tls/crypto/impl/bc/BcTlsSigner.cs b/crypto/src/tls/crypto/impl/bc/BcTlsSigner.cs

index 841803043..cb510a150 100644 --- a/crypto/src/tls/crypto/impl/bc/BcTlsSigner.cs +++ b/crypto/src/tls/crypto/impl/bc/BcTlsSigner.cs
@@ -23,7 +23,10 @@ namespace Org.BouncyCastle.Tls.Crypto.Impl.BC this.m_privateKey = privateKey; } - public abstract byte[] GenerateRawSignature(SignatureAndHashAlgorithm algorithm, byte[] hash); + public virtual byte[] GenerateRawSignature(SignatureAndHashAlgorithm algorithm, byte[] hash) + { + throw new NotSupportedException(); + } public virtual TlsStreamSigner GetStreamSigner(SignatureAndHashAlgorithm algorithm) {