Home
last modified time | relevance | path

Searched refs:single (Results 1 – 25 of 179) sorted by relevance

12345678

/openssl/crypto/ocsp/
H A Docsp_cl.c226 OCSP_SINGLERESP *single; in OCSP_resp_find() local
236 single = sk_OCSP_SINGLERESP_value(sresp, i); in OCSP_resp_find()
237 if (!OCSP_id_cmp(id, single->certId)) in OCSP_resp_find()
248 int OCSP_single_get0_status(OCSP_SINGLERESP *single, int *reason, in OCSP_single_get0_status() argument
256 if (single == NULL) in OCSP_single_get0_status()
258 cst = single->certStatus; in OCSP_single_get0_status()
273 *thisupd = single->thisUpdate; in OCSP_single_get0_status()
275 *nextupd = single->nextUpdate; in OCSP_single_get0_status()
290 OCSP_SINGLERESP *single; in OCSP_resp_find_status() local
295 single = OCSP_resp_get0(bs, i); in OCSP_resp_find_status()
[all …]
H A Docsp_srv.c92 OCSP_SINGLERESP *single = NULL; in OCSP_basic_add1_status() local
101 if ((single = OCSP_SINGLERESP_new()) == NULL) in OCSP_basic_add1_status()
104 if (!ASN1_TIME_to_generalizedtime(thisupd, &single->thisUpdate)) in OCSP_basic_add1_status()
107 !ASN1_TIME_to_generalizedtime(nextupd, &single->nextUpdate)) in OCSP_basic_add1_status()
110 OCSP_CERTID_free(single->certId); in OCSP_basic_add1_status()
112 if ((single->certId = OCSP_CERTID_dup(cid)) == NULL) in OCSP_basic_add1_status()
115 cs = single->certStatus; in OCSP_basic_add1_status()
148 if (!(sk_OCSP_SINGLERESP_push(rsp->tbsResponseData.responses, single))) in OCSP_basic_add1_status()
150 return single; in OCSP_basic_add1_status()
152 OCSP_SINGLERESP_free(single); in OCSP_basic_add1_status()
H A Docsp_prn.c144 OCSP_SINGLERESP *single = NULL; in OCSP_RESPONSE_print() local
192 single = sk_OCSP_SINGLERESP_value(rd->responses, i); in OCSP_RESPONSE_print()
193 cid = single->certId; in OCSP_RESPONSE_print()
196 cst = single->certStatus; in OCSP_RESPONSE_print()
216 if (!ASN1_GENERALIZEDTIME_print(bp, single->thisUpdate)) in OCSP_RESPONSE_print()
218 if (single->nextUpdate) { in OCSP_RESPONSE_print()
221 if (!ASN1_GENERALIZEDTIME_print(bp, single->nextUpdate)) in OCSP_RESPONSE_print()
228 single->singleExtensions, flags, 8)) in OCSP_RESPONSE_print()
/openssl/doc/designs/quic-design/
H A Dquic-requirements.md37 layer interface and a single stream QUIC client in the form of s_client that
61 * For the MVP a single interop target (i.e. the server implementation list):
90 * In TLS/DTLS each connection represents a single stream and each connection is
96 * The majority of existing applications operate using a single connection (i.e.
126 interactions. We want to be able to enable them to transfer to using single
130 interactions. We want to be able to enable them to transfer to using single
152 * It shouldn’t be harder to do single stream just because multi stream as a
165 support "single copy" APIs in the future:
167 A single copy API would make it possible for application data being sent or
191 * a single stream QUIC client in the form of s_client that does not require
[all …]
H A Dstream-receive-buffers.md34 - To support a single copy operation with a future stream read call
119 a single-copy operation a rogue peer could use this to override the stored
128 in the single-copy scenario.
143 Because in MVP only a single bidirectional stream to receive
H A Ddgram-api.md68 zero/single-copy requirements. Moreover, it would lead to extremely
249 is the limit of iovecs on a single message; in other words, the
252 `BIO_writem` with a single message with 65 iovecs will never work
303 The problem here is we want to support “single-copy” (where the data is only
363 successive function calls in a “builder” style rather than via a single function
387 and agglomerate multiple datagrams into a single BIO call. Unless we only
392 - Flexible support for single-copy (zero-copy).
469 intention to support multithreaded use of a single BIO at this time (unless I am
H A Dquic-thread-assist.md15 the locking to every single public HL-related API call.
34 An application performing a single HL API call, or a sequence of related HL
/openssl/doc/man7/
H A DEVP_KDF-SSHKDF.pod54 A single char of value 65 (ASCII char 'A').
59 A single char of value 66 (ASCII char 'B').
64 A single char of value 67 (ASCII char 'C').
69 A single char of value 68 (ASCII char 'D').
74 A single char of value 69 (ASCII char 'E').
79 A single char of value 70 (ASCII char 'F').
H A Dprovider-kdf.pod283 A single char of value 65 (ASCII char 'A').
288 A single char of value 66 (ASCII char 'B').
293 A single char of value 67 (ASCII char 'C').
298 A single char of value 68 (ASCII char 'D').
303 A single char of value 69 (ASCII char 'E').
308 A single char of value 70 (ASCII char 'F').
H A Dossl-guide-libssl-introduction.pod50 connection. A single B<SSL_CTX> object can be used to create many connections
78 together into an B<SSL_SESSION> object. A single successful connection with a
85 algorithms they are going to use for encryption and other uses. A single set
H A Dbio.pod33 BIOs can be joined together to form a chain (a single BIO is a chain
46 Calling BIO_free_all() on a single BIO has the same effect as calling
/openssl/doc/man3/
H A DBIO_new.pod30 BIO_free() frees up a single BIO, BIO_vfree() also frees up a single BIO
55 Calling BIO_free_all() on a single BIO has the same effect as calling BIO_free()
H A DBIO_push.pod19 Otherwise it prepends I<b>, which may be a single BIO or a chain of BIOs,
27 The removed BIO becomes a single BIO with no association with
37 joins two BIO chains whereas BIO_pop() deletes a single BIO from a chain,
H A DOCSP_resp_find_status.pod27 int OCSP_single_get0_status(OCSP_SINGLERESP *single, int *reason,
33 const OCSP_BASICRESP* single);
80 OCSP_single_get0_status() extracts the fields of I<single> in I<*reason>,
84 single response I<bs>.
156 OCSP_single_get0_status() returns the status of I<single> or -1 if an error
H A DASN1_INTEGER_new.pod20 ASN1_INTEGER_free() frees up a single B<ASN1_INTEGER> object.
H A DPKCS12_init.pod17 to this structure are enclosed first within a single PKCS#7 contentInfo
H A DX509_STORE_new.pod29 X509_STORE_free() frees up a single X509_STORE object.
H A DBIO_s_datagram.pod37 Because BIO_s_datagram() has datagram semantics, a single BIO_write() call sends
38 a single datagram and a single BIO_read() call receives a single datagram. If
/openssl/include/crypto/
H A Dbn_conf.h.in17 * both 32-bit and 64-bit builds are supported from a single run
/openssl/crypto/
H A DREADME-sparse_array.md49 except for the single pointer to the user's data (N = SA_BLOCK_MAX for
151 small indices (e.g. NIDs), single level (constant time) access is achievable.
/openssl/doc/internal/man3/
H A Dossl_serial_number_print.pod23 whatever precedes it, after a single SPACE character.
/openssl/include/openssl/
H A Dsafestack.h.in185 * Strings are special: normally an lhash entry will point to a single
188 * a) Instead of a single char, there is an array of chars, NUL-terminated.
204 * above, instead of a single char each entry is a NUL-terminated array of
/openssl/
H A DREADME-QUIC.md56 There is basic support for single-stream QUIC using `openssl s_client`:
67 This example connects to a QUIC server and opens a single bidirectional stream.
/openssl/apps/
H A Docsp.c1113 OCSP_SINGLERESP *single; in make_ocsp_response() local
1117 single = OCSP_basic_add1_status(bs, cid, in make_ocsp_response()
1120 if (single == NULL) { in make_ocsp_response()
1126 OCSP_SINGLERESP_add1_ext_i2d(single, NID_invalidity_date, in make_ocsp_response()
1129 OCSP_SINGLERESP_add1_ext_i2d(single, in make_ocsp_response()
/openssl/doc/designs/
H A Dhandling-some-max-defines.md113 used by 3rd party applications to allocate some fixed buffers for single
131 This macro is used in a single place in hpke to allocate a fixed buffer.

Completed in 36 milliseconds

12345678