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: f689dde6bc30e0180243413e43372194b5a3ed04 (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;
}