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

ContentType.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: 65ed9b60c590bba564afe6a1c71bc9730c4e950e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.bouncycastle.crypto.tls;

/**
 * RFC 2246 6.2.1
 */
public class ContentType
{
    public static final short change_cipher_spec = 20;
    public static final short alert = 21;
    public static final short handshake = 22;
    public static final short application_data = 23;
    public static final short heartbeat = 24;
}