aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/tls/TlsPSKIdentity.java
blob: a271ddced8398038882560c5ac911f56519e6fb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.spongycastle.crypto.tls;

public interface TlsPSKIdentity
{
    void skipIdentityHint();

    void notifyIdentityHint(byte[] psk_identity_hint);

    byte[] getPSKIdentity();

    byte[] getPSK();
}