< prev index next >

src/java.base/share/classes/sun/security/x509/PrivateKeyUsageExtension.java

Print this page
rev 47483 : [mq]: XXXXXXX-double-trouble-2

*** 193,203 **** sb.append("]\n"); return sb.toString(); } /** ! * Verify that that the current time is within the validity period. * * @exception CertificateExpiredException if the certificate has expired. * @exception CertificateNotYetValidException if the certificate is not * yet valid. */ --- 193,203 ---- sb.append("]\n"); return sb.toString(); } /** ! * Verify that the current time is within the validity period. * * @exception CertificateExpiredException if the certificate has expired. * @exception CertificateNotYetValidException if the certificate is not * yet valid. */
*** 206,216 **** Date now = new Date(); valid(now); } /** ! * Verify that that the passed time is within the validity period. * * @exception CertificateExpiredException if the certificate has expired * with respect to the <code>Date</code> supplied. * @exception CertificateNotYetValidException if the certificate is not * yet valid with respect to the <code>Date</code> supplied. --- 206,216 ---- Date now = new Date(); valid(now); } /** ! * Verify that the passed time is within the validity period. * * @exception CertificateExpiredException if the certificate has expired * with respect to the <code>Date</code> supplied. * @exception CertificateNotYetValidException if the certificate is not * yet valid with respect to the <code>Date</code> supplied.
< prev index next >