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

public class ClientAuthenticationType
{

    /*
     * RFC 5077 4
     */
    public static final short anonymous = 0;
    public static final short certificate_based = 1;
    public static final short psk = 2;
}