21 lines
515 B
Java
21 lines
515 B
Java
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();
|
|
}
|