| ASN.1 structure DER En/DeCoder.
RevDetails ::= SEQUENCE {
certDetails CertTemplate, -- allows requester to specify as much as they can about the cert. for which revocation is requested
revocationReason ReasonFlags OPTIONAL, -- the reason that revocation is requested
badSinceDate GeneralizedTime OPTIONAL, -- indicates best knowledge of sender
crlEntryDetails Extensions OPTIONAL -- requested crlEntryExtensions (X509Extensions)
}
ReasonFlags ::= BIT STRING {
unused(0),
keyCompromise(1),
caCompromise(2),
affiliationChanged(3),
superseded(4),
cessationOfOperation(5),
certificateHold(6)
}
|