summary refs log tree commit diff
path: root/crypto/src/tls/CertificateStatusType.cs
blob: bb0c424552b4862efdc210f725846504fead1a0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Org.BouncyCastle.Tls
{
    public abstract class CertificateStatusType
    {
        /*
         *  RFC 6066
         */
        public const short ocsp = 1;

        /*
         *  RFC 6961
         */
        public const short ocsp_multi = 2;
    }
}