Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ClientAuthenticationType.java « tls « crypto « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77e64607fa6e5a01227b4d5e31752bc90bad7b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.bouncycastle.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;
}