summaryrefslogtreecommitdiff
path: root/bcprov/src/main/java/org/bouncycastle/crypto/tls/CertificateType.java
blob: 5dc503ebe0842768d08b19e7f44dd4ef4d195331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.bouncycastle.crypto.tls;

/**
 * RFC 6091 
 */
public class CertificateType
{
    public static final short X509 = 0;
    public static final short OpenPGP = 1;
    
    /*
     * RFC 7250
     */
    public static final short RawPublicKey = 2;
}