HomeSort by relevance Sort by last modified time
    Searched full:rcert (Results 1 - 1 of 1) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
TBSCertList.java 144 RevokedCertificate rcert = (RevokedCertificate) rc; local
145 return userCertificate.equals(rcert.userCertificate)
147 == (rcert.revocationDate.getTime() / 1000))
149 ? rcert.crlEntryExtensions == null
150 : crlEntryExtensions.equals(rcert.crlEntryExtensions));
185 RevokedCertificate rcert = (RevokedCertificate) object;
186 values[0] = rcert.userCertificate.toByteArray();
187 values[1] = rcert.revocationDate;
188 values[2] = rcert.crlEntryExtensions;

Completed in 48 milliseconds