Home
last modified time | relevance | path

Searched refs:certStatus (Results 1 – 15 of 15) sorted by relevance

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
DBasicOCSPRespBuilder.java41 CertStatus certStatus; field in BasicOCSPRespBuilder.ResponseObject
48 CertificateStatus certStatus, in ResponseObject() argument
55 if (certStatus == null) in ResponseObject()
57 this.certStatus = new CertStatus(); in ResponseObject()
59 else if (certStatus instanceof UnknownStatus) in ResponseObject()
61 this.certStatus = new CertStatus(2, DERNull.INSTANCE); in ResponseObject()
65 RevokedStatus rs = (RevokedStatus)certStatus; in ResponseObject()
69 this.certStatus = new CertStatus( in ResponseObject()
74 this.certStatus = new CertStatus( in ResponseObject()
96 …return new SingleResponse(certId.toASN1Primitive(), certStatus, thisUpdate, nextUpdate, extensions… in toResponse()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
DSingleResponse.java18 private CertStatus certStatus; field in SingleResponse
33 CertStatus certStatus, in SingleResponse() argument
38 this(certID, certStatus, thisUpdate, nextUpdate, Extensions.getInstance(singleExtensions)); in SingleResponse()
43 CertStatus certStatus, in SingleResponse() argument
49 this.certStatus = certStatus; in SingleResponse()
59 this.certStatus = CertStatus.getInstance(seq.getObjectAt(1)); in SingleResponse()
113 return certStatus; in getCertStatus()
147 v.add(certStatus); in toASN1Primitive()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DCertStatus.java11 int certStatus = UNREVOKED; field in CertStatus
36 return certStatus; in getCertStatus()
42 public void setCertStatus(int certStatus) in setCertStatus() argument
44 this.certStatus = certStatus; in setCertStatus()
DRFC3280CertPathUtilities.java864 CertStatus certStatus, in processCRLI() argument
870 CertPathValidatorUtilities.getCertStatus(validDate, deltacrl, cert, certStatus); in processCRLI()
878 CertStatus certStatus) in processCRLJ() argument
881 if (certStatus.getCertStatus() == CertStatus.UNREVOKED) in processCRLJ()
883 CertPathValidatorUtilities.getCertStatus(validDate, completecrl, cert, certStatus); in processCRLJ()
1761 CertStatus certStatus, in checkCRL() argument
1786 …while (crl_iter.hasNext() && certStatus.getCertStatus() == CertStatus.UNREVOKED && !reasonMask.isA… in checkCRL()
1865 … RFC3280CertPathUtilities.processCRLI(validDate, deltaCRL, cert, certStatus, paramsPKIX); in checkCRL()
1868 RFC3280CertPathUtilities.processCRLJ(validDate, crl, cert, certStatus); in checkCRL()
1871 if (certStatus.getCertStatus() == CRLReason.removeFromCRL) in checkCRL()
[all …]
DCertPathValidatorUtilities.java890 CertStatus certStatus) in getCertStatus() argument
976 certStatus.setCertStatus(reasonCode.getValue().intValue()); in getCertStatus()
981 certStatus.setCertStatus(CRLReason.unspecified); in getCertStatus()
983 certStatus.setRevocationDate(crl_entry.getRevocationDate()); in getCertStatus()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/pkix/jcajce/
DCertStatus.java11 int certStatus = UNREVOKED; field in CertStatus
36 return certStatus; in getCertStatus()
42 public void setCertStatus(int certStatus) in setCertStatus() argument
44 this.certStatus = certStatus; in setCertStatus()
DRFC3280CertPathUtilities.java815 CertStatus certStatus, in processCRLI() argument
821 RevocationUtilities.getCertStatus(validDate, deltacrl, cert, certStatus); in processCRLI()
829 CertStatus certStatus) in processCRLJ() argument
832 if (certStatus.getCertStatus() == CertStatus.UNREVOKED) in processCRLJ()
834 RevocationUtilities.getCertStatus(validDate, completecrl, cert, certStatus); in processCRLJ()
863 CertStatus certStatus, in checkCRL() argument
895 …while (crl_iter.hasNext() && certStatus.getCertStatus() == CertStatus.UNREVOKED && !reasonMask.isA… in checkCRL()
967 … RFC3280CertPathUtilities.processCRLI(validDate, deltaCRL, cert, certStatus, paramsPKIX); in checkCRL()
970 RFC3280CertPathUtilities.processCRLJ(validDate, crl, cert, certStatus); in checkCRL()
973 if (certStatus.getCertStatus() == CRLReason.removeFromCRL) in checkCRL()
[all …]
DRevocationUtilities.java588 CertStatus certStatus) in getCertStatus() argument
674 certStatus.setCertStatus(reasonCode.getValue().intValue()); in getCertStatus()
679 certStatus.setCertStatus(CRLReason.unspecified); in getCertStatus()
681 certStatus.setRevocationDate(crl_entry.getRevocationDate()); in getCertStatus()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/
DCertStatus.java12 int certStatus = UNREVOKED; field in CertStatus
37 return certStatus; in getCertStatus()
43 public void setCertStatus(int certStatus) in setCertStatus() argument
45 this.certStatus = certStatus; in setCertStatus()
DRFC3280CertPathUtilities.java865 CertStatus certStatus, in processCRLI() argument
871 CertPathValidatorUtilities.getCertStatus(validDate, deltacrl, cert, certStatus); in processCRLI()
879 CertStatus certStatus) in processCRLJ() argument
882 if (certStatus.getCertStatus() == CertStatus.UNREVOKED) in processCRLJ()
884 CertPathValidatorUtilities.getCertStatus(validDate, completecrl, cert, certStatus); in processCRLJ()
1762 CertStatus certStatus, in checkCRL() argument
1787 …while (crl_iter.hasNext() && certStatus.getCertStatus() == CertStatus.UNREVOKED && !reasonMask.isA… in checkCRL()
1866 … RFC3280CertPathUtilities.processCRLI(validDate, deltaCRL, cert, certStatus, paramsPKIX); in checkCRL()
1869 RFC3280CertPathUtilities.processCRLJ(validDate, crl, cert, certStatus); in checkCRL()
1872 if (certStatus.getCertStatus() == CRLReason.removeFromCRL) in checkCRL()
[all …]
DCertPathValidatorUtilities.java891 CertStatus certStatus) in getCertStatus() argument
977 certStatus.setCertStatus(reasonCode.getValue().intValue()); in getCertStatus()
982 certStatus.setCertStatus(CRLReason.unspecified); in getCertStatus()
984 certStatus.setRevocationDate(crl_entry.getRevocationDate()); in getCertStatus()
/external/python/pyasn1-modules/tools/
Docspclient.py166 producedAt, certId, certStatus, thisUpdate = parseOcspResponse(ocspRsp) variable
169 certStatus, producedAt, thisUpdate))
/external/wpa_supplicant_8/src/crypto/
Dtls_openssl_ocsp.c133 CertStatus *certStatus; member
194 ASN1_SIMPLE(SingleResponse, certStatus, CertStatus),
742 switch (sresp->certStatus->type) { in check_ocsp_resp()
820 if (matching_resp->certStatus->type == 1) { in check_ocsp_resp()
827 if (matching_resp->certStatus->type != 0) { in check_ocsp_resp()
/external/boringssl/src/ssl/test/runner/
Dhandshake_server.go1638 certStatus := new(certificateStatusMsg)
1639 certStatus.statusType = statusTypeOCSP
1640 certStatus.response = hs.cert.OCSPStaple
1642 certStatus.response = config.Bugs.SendOCSPResponseOnRenegotiation
1644 hs.writeServerHash(certStatus.marshal())
1645 c.writeRecord(recordTypeHandshake, certStatus.marshal())
/external/scapy/test/
Dx509.uts248 assert(isinstance(singleResponse.certStatus.certStatus, OCSP_GoodInfo))