Searched refs:X509CRLEntry (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/security/cert/
H A DX509CRLEntry.java30 public abstract class X509CRLEntry implements X509Extension { class in inherits:X509Extension
33 * Creates a new {@code X509CRLEntry} instance.
35 public X509CRLEntry() {} method in class:X509CRLEntry
49 if (!(other instanceof X509CRLEntry)) {
52 X509CRLEntry obj = (X509CRLEntry) other;
H A DX509CRL.java209 public abstract X509CRLEntry getRevokedCertificate(BigInteger serialNumber);
219 public X509CRLEntry getRevokedCertificate(X509Certificate certificate) {
232 public abstract Set<? extends X509CRLEntry> getRevokedCertificates();
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
H A DX509CRLImpl.java38 import java.security.cert.X509CRLEntry;
238 public X509CRLEntry getRevokedCertificate(X509Certificate certificate) {
257 X509CRLEntry entry = (X509CRLEntry) entries.get(i);
278 X509CRLEntry entry = (X509CRLEntry) entries.get(i);
293 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) {
301 X509CRLEntry entry = (X509CRLEntry) entries.get(i);
313 public Set<? extends X509CRLEntry> getRevokedCertificate
[all...]
H A DX509CRLEntryImpl.java27 import java.security.cert.X509CRLEntry;
36 * Implementation of X509CRLEntry. It wraps the instance
45 * @see java.security.cert.X509CRLEntry
47 public class X509CRLEntryImpl extends X509CRLEntry {
49 // the crl entry object to be wrapped in X509CRLEntry
74 // ------ java.security.cert.X509CRLEntry method implementations -------
78 * @see java.security.cert.X509CRLEntry#getEncoded()
91 * @see java.security.cert.X509CRLEntry#getSerialNumber()
99 * @see java.security.cert.X509CRLEntry#getCertificateIssuer()
107 * @see java.security.cert.X509CRLEntry#getRevocationDat
[all...]
/libcore/luni/src/test/java/tests/security/cert/
H A DX509CRL2Test.java29 import java.security.cert.X509CRLEntry;
141 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) {
146 public Set<? extends X509CRLEntry> getRevokedCertificates() {
H A DX509CRLEntryTest.java31 import java.security.cert.X509CRLEntry;
39 X509CRLEntry tbt_crlentry;
44 private class TBTCRLEntry extends X509CRLEntry {
95 * X509CRLEntry() method testing. Tests for creating object.
159 + "which is not an instance of X509CRLEntry.",
H A DX509CRLTest.java43 import java.security.cert.X509CRLEntry;
140 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) {
144 public Set<X509CRLEntry> getRevokedCertificates() {
H A DX509CRLSelector2Test.java26 import java.security.cert.X509CRLEntry;
612 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) {
616 public Set<X509CRLEntry> getRevokedCertificates() {

Completed in 366 milliseconds