Home
last modified time | relevance | path

Searched refs:responseBytes (Results 1 – 10 of 10) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
DOCSPResponse.java26 ResponseBytes responseBytes; field in OCSPResponse
30 ResponseBytes responseBytes) in OCSPResponse() argument
33 this.responseBytes = responseBytes; in OCSPResponse()
43 responseBytes = ResponseBytes.getInstance( in OCSPResponse()
77 return responseBytes; in getResponseBytes()
94 if (responseBytes != null) in toASN1Primitive()
96 v.add(new DERTaggedObject(true, 0, responseBytes)); in toASN1Primitive()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/ocsp/
DOCSPResponse.java28 ResponseBytes responseBytes; field in OCSPResponse
32 ResponseBytes responseBytes) in OCSPResponse() argument
35 this.responseBytes = responseBytes; in OCSPResponse()
45 responseBytes = ResponseBytes.getInstance( in OCSPResponse()
79 return responseBytes; in getResponseBytes()
96 if (responseBytes != null) in toASN1Primitive()
98 v.add(new DERTaggedObject(true, 0, responseBytes)); in toASN1Primitive()
/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/internal/
DParcelCallReceiver.java47 byte[] responseBytes = responseParcel.marshall(); in prepareResponse()
49 if (responseBytes.length <= CrossProfileSender.MAX_BYTES_PER_BLOCK) { in prepareResponse()
51 return ByteUtilities.joinByteArrays(new byte[] {0}, responseBytes); in prepareResponse()
54 preparedResponses.put(callId, responseBytes); in prepareResponse()
58 byte[] sizeBytes = ByteBuffer.allocate(4).putInt(responseBytes.length).array(); in prepareResponse()
61 responseBytes, in prepareResponse()
/external/nos/host/generic/libnos/generator/test/
Dtest.cpp82 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/
Docspclient.py102 responseBytes = ocspResponse.getComponentByName('responseBytes')
103 responseType = responseBytes.getComponentByName('responseType')
106 response = responseBytes.getComponentByName('response')
/external/okio/okio/jvm/jmh/src/jmh/java/com/squareup/okio/benchmarks/
DBufferPerformanceBenchmark.java145 buffers.transmit(responseBytes).readAll(NullSink); in thinkWriteCold()
150 buffers.transmit(responseBytes).readAll(NullSink); in readWriteRecycle()
170 byte[] responseBytes; field in BufferPerformanceBenchmark
177 responseBytes = storeSourceData(new byte[requestSize * responseFactor]); in storeRequestResponseData()
/external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/
DBufferPerformanceBench.java145 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/
Dx509.uts223 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/
Dtls_openssl_ocsp.c70 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/
Dnative_crypto.cc7556 ScopedByteArrayRO responseBytes(env, response); in NativeCrypto_SSL_set_ocsp_response() local
7557 if (responseBytes.get() == nullptr) { in NativeCrypto_SSL_set_ocsp_response()
7562 if (!SSL_set_ocsp_response(ssl, reinterpret_cast<const uint8_t*>(responseBytes.get()), in NativeCrypto_SSL_set_ocsp_response()
7563 responseBytes.size())) { in NativeCrypto_SSL_set_ocsp_response()