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

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