equal
deleted
inserted
replaced
147 // Object identifier for the OCSPSigning key purpose |
147 // Object identifier for the OCSPSigning key purpose |
148 private static final String KP_OCSP_SIGNING_OID = "1.3.6.1.5.5.7.3.9"; |
148 private static final String KP_OCSP_SIGNING_OID = "1.3.6.1.5.5.7.3.9"; |
149 |
149 |
150 private SingleResponse singleResponse; |
150 private SingleResponse singleResponse; |
151 |
151 |
152 // Maximum clock skew in milliseconds (10 minutes) allowed when checking |
152 // Maximum clock skew in milliseconds (15 minutes) allowed when checking |
153 // validity of OCSP responses |
153 // validity of OCSP responses |
154 private static final long MAX_CLOCK_SKEW = 600000; |
154 private static final long MAX_CLOCK_SKEW = 900000; |
155 |
155 |
156 // an array of all of the CRLReasons (used in SingleResponse) |
156 // an array of all of the CRLReasons (used in SingleResponse) |
157 private static CRLReason[] values = CRLReason.values(); |
157 private static CRLReason[] values = CRLReason.values(); |
158 |
158 |
159 /* |
159 /* |