📄 crlreason.java
字号:
package org.bouncycastle.asn1.x509;import org.bouncycastle.asn1.*;public class CRLReason extends DEREnumerated{ public static final int UNSPECIFIED = 0; public static final int KEY_COMPROMISE = 1; public static final int CA_COMPROMISE = 2; public static final int AFFILIATION_CHANGED = 3; public static final int SUPERSEDED = 4; public static final int CESSATION_OF_OPERATION = 5; public static final int CERTIFICATE_HOLD = 6; public static final int REMOVE_FROM_CRL = 8; public static final int PRIVILEGE_WITHDRAWN = 9; public static final int AA_COMPROMISE = 10; /** * <pre> * CRLReason ::= ENUMERATED { * unspecified (0), * keyCompromise (1), * cACompromise (2), * affiliationChanged (3), * superseded (4), * cessationOfOperation (5), * certificateHold (6), * removeFromCRL (8), * privilegeWithdrawn (9), * aACompromise (10) * } * </pre> */ public CRLReason( int reason) { super(reason); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -