HomeSort by relevance Sort by last modified time
    Searched refs:OCSPResponse (Results 1 - 23 of 23) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
OCSPResponse.java 11 public class OCSPResponse
17 public OCSPResponse(
25 private OCSPResponse(
37 public static OCSPResponse getInstance(
44 public static OCSPResponse getInstance(
47 if (obj instanceof OCSPResponse)
49 return (OCSPResponse)obj;
53 return new OCSPResponse(ASN1Sequence.getInstance(obj));
72 * OCSPResponse ::= SEQUENCE {
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
OCSPResp.java 12 import org.bouncycastle.asn1.ocsp.OCSPResponse;
26 private OCSPResponse resp;
29 OCSPResponse resp)
54 this.resp = OCSPResponse.getInstance(aIn.readObject());
137 public OCSPResponse toASN1Structure()
OCSPRespBuilder.java 8 import org.bouncycastle.asn1.ocsp.OCSPResponse;
33 return new OCSPResp(new OCSPResponse(new OCSPResponseStatus(status), null));
53 return new OCSPResp(new OCSPResponse(
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
OCSP.java 45 import static sun.security.provider.certpath.OCSPResponse.*;
131 OCSPResponse ocspResponse = check(Collections.singletonList(certId),
134 return (RevocationStatus)ocspResponse.getSingleResponse(certId);
179 OCSPResponse ocspResponse = check(Collections.singletonList(certId),
181 return (RevocationStatus) ocspResponse.getSingleResponse(certId);
193 * @return the OCSPResponse
199 static OCSPResponse check(List<CertId> certIds, URI responderURI,
281 OCSPResponse ocspResponse = null
    [all...]
OCSPResponse.java 57 * OCSPResponse ::= SEQUENCE {
121 public final class OCSPResponse {
192 OCSPResponse(byte[] bytes) throws IOException {
195 debug.println("OCSPResponse bytes...\n\n" +
211 throw new IOException("Unknown OCSPResponse status: " + status);
595 // Check freshness of OCSPResponse
    [all...]
RevocationChecker.java 682 OCSPResponse response = null;
700 response = new OCSPResponse(responseBytes);
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl_ocsp.c 64 * OCSPResponse ::= SEQUENCE {
71 } OCSPResponse;
78 ASN1_SEQUENCE(OCSPResponse) = {
79 ASN1_SIMPLE(OCSPResponse, responseStatus, ASN1_ENUMERATED),
80 ASN1_EXP_OPT(OCSPResponse, responseBytes, ResponseBytes, 0)
81 } ASN1_SEQUENCE_END(OCSPResponse);
83 IMPLEMENT_ASN1_FUNCTIONS(OCSPResponse);
491 OCSPResponse *resp;
529 wpa_printf(MSG_INFO, "OpenSSL: Failed to parse OCSPResponse");
  /prebuilts/go/darwin-x86/src/crypto/tls/
conn.go 49 ocspResponse []byte // stapled OCSP response
    [all...]
common.go 172 OCSPResponse []byte // stapled OCSP response from server, if any
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
conn.go 49 ocspResponse []byte // stapled OCSP response
    [all...]
common.go 172 OCSPResponse []byte // stapled OCSP response from server, if any
    [all...]
  /external/boringssl/src/ssl/test/runner/
conn.go 47 ocspResponse []byte // stapled OCSP response
    [all...]
runner.go 659 if test.expectedOCSPResponse != nil && !bytes.Equal(test.expectedOCSPResponse, tlsConn.OCSPResponse()) {
660 return fmt.Errorf("OCSP Response mismatch: got %x, wanted %x", tlsConn.OCSPResponse(), test.expectedOCSPResponse)
    [all...]
  /frameworks/base/config/
compiled-classes-phone     [all...]
  /libcore/
openjdk_java_files.mk     [all...]