what-the-bank/sources/org/bouncycastle/crypto/tls/TlsAuthentication.java

11 lines
316 B
Java

package org.bouncycastle.crypto.tls;
import java.io.IOException;
/* loaded from: classes6.dex */
public interface TlsAuthentication {
TlsCredentials getClientCredentials(CertificateRequest certificateRequest) throws IOException;
void notifyServerCertificate(Certificate certificate) throws IOException;
}