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

21 lines
417 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.tls;
import org.bouncycastle.crypto.Digest;
/* loaded from: classes6.dex */
public interface TlsHandshakeHash extends Digest {
Digest forkPRFHash();
byte[] getFinalHash(short s);
void init(TlsContext tlsContext);
TlsHandshakeHash notifyPRFDetermined();
void sealHashAlgorithms();
TlsHandshakeHash stopTracking();
void trackHashAlgorithm(short s);
}