Searched refs:responseBytes (Results 1 – 7 of 7) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/ |
D | OCSPResponse.java | 15 ResponseBytes responseBytes; field in OCSPResponse 19 ResponseBytes responseBytes) in OCSPResponse() argument 22 this.responseBytes = responseBytes; in OCSPResponse() 32 responseBytes = ResponseBytes.getInstance( in OCSPResponse() 66 return responseBytes; in getResponseBytes() 83 if (responseBytes != null) in toASN1Primitive() 85 v.add(new DERTaggedObject(true, 0, responseBytes)); in toASN1Primitive()
|
/external/nos/host/generic/libnos/generator/test/ |
D | test.cpp | 82 std::vector<uint8_t> responseBytes(response.ByteSize()); in TEST() local 83 ASSERT_TRUE(response.SerializeToArray(responseBytes.data(), responseBytes.size())); in TEST() 86 .WillOnce(DoAll(SetArgPointee<3>(responseBytes), Return(APP_SUCCESS))); in TEST() 117 std::vector<uint8_t> responseBytes(response.ByteSize()); in TEST() local 118 ASSERT_TRUE(response.SerializeToArray(responseBytes.data(), responseBytes.size())); in TEST() 121 .WillOnce(DoAll(SetArgPointee<3>(responseBytes), Return(APP_ERROR_BOGUS_ARGS))); in TEST()
|
/external/python/pyasn1-modules/tools/ |
D | ocspclient.py | 102 responseBytes = ocspResponse.getComponentByName('responseBytes') 103 responseType = responseBytes.getComponentByName('responseType') 106 response = responseBytes.getComponentByName('response')
|
/external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/ |
D | BufferPerformanceBench.java | 145 buffers.transmit(responseBytes).readAll(NullSink); in thinkWriteCold() 150 buffers.transmit(responseBytes).readAll(NullSink); in readWriteRecycle() 170 byte[] responseBytes; field in BufferPerformanceBench 177 responseBytes = storeSourceData(new byte[requestSize * responseFactor]); in storeRequestResponseData()
|
/external/scapy/test/ |
D | x509.uts | 223 assert(isinstance(response.responseBytes, OCSP_ResponseBytes)) 224 responseBytes = response.responseBytes 225 assert(responseBytes.responseType == ASN1_OID("basic_response")) 226 assert(responseBytes.signatureAlgorithm.algorithm == ASN1_OID("sha256WithRSAEncryption")) 227 assert(responseBytes.signatureAlgorithm.parameters == ASN1_NULL(0)) 228 assert(responseBytes.signature.val_readable[:3] == b"\x90\xef\xf9" and responseBytes.signature.val_… 229 responseBytes.certs is None 232 responseData = responseBytes.tbsResponseData
|
/external/wpa_supplicant_8/src/crypto/ |
D | tls_openssl_ocsp.c | 70 ResponseBytes *responseBytes; member 80 ASN1_EXP_OPT(OCSPResponse, responseBytes, ResponseBytes, 0) 540 bytes = resp->responseBytes; in check_ocsp_resp()
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 7046 ScopedByteArrayRO responseBytes(env, response); in NativeCrypto_SSL_set_ocsp_response() local 7047 if (responseBytes.get() == nullptr) { in NativeCrypto_SSL_set_ocsp_response() 7052 if (!SSL_set_ocsp_response(ssl, reinterpret_cast<const uint8_t*>(responseBytes.get()), in NativeCrypto_SSL_set_ocsp_response() 7053 responseBytes.size())) { in NativeCrypto_SSL_set_ocsp_response()
|