blob: 8b989e8a26c7e2e6dd645f23d39e68868b9cc23f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
using System;
namespace Org.BouncyCastle.Tls
{
/// <summary>Implementation of the RFC 3546 3.3. CertChainType.</summary>
public abstract class CertChainType
{
public const short individual_certs = 0;
public const short pkipath = 1;
public static string GetName(short certChainType)
{
switch (certChainType)
{
case individual_certs:
return "individual_certs";
case pkipath:
return "pkipath";
default:
return "UNKNOWN";
}
}
public static string GetText(short certChainType)
{
return GetName(certChainType) + "(" + certChainType + ")";
}
public static bool IsValid(short certChainType)
{
return certChainType >= individual_certs && certChainType <= pkipath;
}
}
}
|