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

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

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