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

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