13 lines
177 B
C#
13 lines
177 B
C#
namespace Org.BouncyCastle.Asn1.Cmp;
|
|
|
|
public enum PkiStatus
|
|
{
|
|
Granted,
|
|
GrantedWithMods,
|
|
Rejection,
|
|
Waiting,
|
|
RevocationWarning,
|
|
RevocationNotification,
|
|
KeyUpdateWarning
|
|
}
|