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

21 lines
515 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.tls;
import java.io.IOException;
/* loaded from: classes6.dex */
public interface TlsPeer {
TlsCipher getCipher() throws IOException;
TlsCompression getCompression() throws IOException;
void notifyAlertRaised(short s, short s2, String str, Throwable th);
void notifyAlertReceived(short s, short s2);
void notifyHandshakeComplete() throws IOException;
void notifySecureRenegotiation(boolean z) throws IOException;
boolean shouldUseGMTUnixTime();
}