Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AbstractTlsSignerCredentials.java « tls « crypto « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3452f52749afa7a971f0d56450fd52b406e8a33d (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.bouncycastle.crypto.tls;

public abstract class AbstractTlsSignerCredentials
    extends AbstractTlsCredentials
    implements TlsSignerCredentials
{
    public SignatureAndHashAlgorithm getSignatureAndHashAlgorithm()
    {
        throw new IllegalStateException("TlsSignerCredentials implementation does not support (D)TLS 1.2+");
    }
}