Home
last modified time | relevance | path

Searched refs:getUTCTime (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
DCertificateValidity.java86 notBefore = derVal.data.getUTCTime(); in construct()
94 notAfter = derVal.data.getUTCTime(); in construct()
DX509CRLEntryImpl.java465 this.revocationDate = derVal.data.getUTCTime(); in parse()
DX509CRLImpl.java1130 thisUpdate = derStrm.getUTCTime(); in parse()
1144 nextUpdate = derStrm.getUTCTime(); in parse()
/libcore/ojluni/src/main/java/sun/security/util/
DDerInputStream.java574 public Date getUTCTime() throws IOException { in getUTCTime() method in DerInputStream
577 return buffer.getUTCTime(getLength(buffer)); in getUTCTime()
DDerValue.java745 public Date getUTCTime() throws IOException { in getUTCTime() method in DerValue
749 return buffer.getUTCTime(data.available()); in getUTCTime()
DDerInputBuffer.java261 public Date getUTCTime(int len) throws IOException { in getUTCTime() method in DerInputBuffer
/libcore/ojluni/src/main/java/java/security/
DPKCS12Attribute.java272 values[i] = attrValueSet[i].getUTCTime().toString(); in parse()
/libcore/ojluni/annotations/hiddenapi/sun/security/util/
DDerInputStream.java183 public java.util.Date getUTCTime() throws java.io.IOException { in getUTCTime() method in DerInputStream
DDerValue.java211 public java.util.Date getUTCTime() throws java.io.IOException { in getUTCTime() method in DerValue
/libcore/ojluni/src/main/java/sun/security/pkcs/
DPKCS9Attribute.java542 value = (new DerInputStream(elems[0].toByteArray())).getUTCTime(); in PKCS9Attribute()