jdk/src/share/classes/sun/security/provider/certpath/OCSPResponse.java
changeset 3314 1e9d33caef08
parent 2281 34fd38495efa
child 3841 6738c111d48f
child 4190 227655c2ff8c
equal deleted inserted replaced
3313:0d2503de51fe 3314:1e9d33caef08
   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     /*