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

13 lines
230 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.tls;
/* loaded from: classes6.dex */
public interface TlsPSKIdentity {
byte[] getPSK();
byte[] getPSKIdentity();
void notifyIdentityHint(byte[] bArr);
void skipIdentityHint();
}