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

AlertLevel.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: 2ba4542ffa0bb18b3dc4f5dde209f2ac36f8e2c6 (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.crypto.tls;

/**
 * RFC 5246 7.2
 */
public class AlertLevel
{
    public static final short warning = 1;
    public static final short fatal = 2;
}