Home
last modified time | relevance | path

Searched refs:getRevokedCertificate (Results 1 – 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/security/cert/
DX509CRL.java362 getRevokedCertificate(BigInteger serialNumber); in getRevokedCertificate() method in X509CRL
381 public X509CRLEntry getRevokedCertificate(X509Certificate certificate) { in getRevokedCertificate() method in X509CRL
387 return getRevokedCertificate(certificate.getSerialNumber()); in getRevokedCertificate()
/libcore/luni/src/test/java/tests/security/cert/
DX509CRLTest.java138 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) { in getRevokedCertificate() method in X509CRLTest.TBTCRL
281 crl.getRevokedCertificate((X509Certificate) null); in testGetRevokedCertificate()
291 crl.getRevokedCertificate(cert); in testGetRevokedCertificate()
308 crl.getRevokedCertificate(BigInteger.ONE); in testAbstractMethods()
DX509CRL2Test.java141 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) { in getRevokedCertificate() method in X509CRL2Test.MyX509CRL
DX509CRLSelector2Test.java609 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) { in getRevokedCertificate() method in X509CRLSelector2Test.TestCRL
/libcore/luni/src/test/java/libcore/java/security/cert/
DX509CRLTest.java424 assertRsaCrlEntry(f, crlRsa.getRevokedCertificate(e.getSerialNumber())); in getRevokedCertificates()
430 assertRsaCrlEntry(f, crlRsaDsa.getRevokedCertificate(rsaCert)); in getRevokedCertificates()
431 assertRsaCrlEntry(f, crlRsaDsa.getRevokedCertificate(rsaCert.getSerialNumber())); in getRevokedCertificates()
432 assertDsaCrlEntry(f, crlRsaDsa.getRevokedCertificate(dsaCert)); in getRevokedCertificates()
433 assertDsaCrlEntry(f, crlRsaDsa.getRevokedCertificate(dsaCert.getSerialNumber())); in getRevokedCertificates()
495 X509CRLEntry entry1 = crl1.getRevokedCertificate(rsaCert); in test_equals()
497 X509CRLEntry entry2 = crl2.getRevokedCertificate(rsaCert); in test_equals()
/libcore/ojluni/src/main/java/sun/security/x509/
DX509CRLImpl.java703 public X509CRLEntry getRevokedCertificate(BigInteger serialNumber) { in getRevokedCertificate() method in X509CRLImpl
716 public X509CRLEntry getRevokedCertificate(X509Certificate cert) { in getRevokedCertificate() method in X509CRLImpl
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DRevocationChecker.java622 X509CRLEntry e = crl.getRevokedCertificate(cert);