using System; namespace Org.BouncyCastle.Tls { /// RFC 6091 public abstract class CertificateType { public const short X509 = 0; public const short OpenPGP = 1; /* * RFC 7250 */ public const short RawPublicKey = 2; } }