1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using System; namespace Org.BouncyCastle.Tls { /// <summary>RFC 6091</summary> public abstract class CertificateType { public const short X509 = 0; public const short OpenPGP = 1; /* * RFC 7250 */ public const short RawPublicKey = 2; } }