HomeSort by relevance Sort by last modified time
    Searched refs:getUTCTime (Results 1 - 7 of 7) sorted by null

  /libcore/ojluni/src/main/java/sun/security/x509/
CertificateValidity.java 86 notBefore = derVal.data.getUTCTime();
94 notAfter = derVal.data.getUTCTime();
X509CRLEntryImpl.java 467 this.revocationDate = derVal.data.getUTCTime();
X509CRLImpl.java     [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
DerInputStream.java 533 public Date getUTCTime() throws IOException {
536 return buffer.getUTCTime(getLength(buffer));
DerValue.java 741 public Date getUTCTime() throws IOException {
743 throw new IOException("DerValue.getUTCTime, not a UtcTime: " + tag);
745 return buffer.getUTCTime(data.available());
DerInputBuffer.java 254 public Date getUTCTime(int len) throws IOException {
  /libcore/ojluni/src/main/java/sun/security/pkcs/
PKCS9Attribute.java 541 value = (new DerInputStream(elems[0].toByteArray())).getUTCTime();

Completed in 53 milliseconds