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

ServerOnlyTlsAuthentication.java « tls « crypto « bouncycastle « org « java « main « src - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 62f74d60fadc9d7ad89893f675dee8a083c3df91 (plain)
1
2
3
4
5
6
7
package org.bouncycastle.crypto.tls;

public abstract class ServerOnlyTlsAuthentication implements TlsAuthentication {
    public final TlsCredentials getClientCredentials(CertificateRequest certificateRequest) {
        return null;
    }
}