HomeSort by: relevance | last modified time | path
    Searched refs:lcid_len (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_lcidm.c 65 size_t lcid_len; /* Length in bytes for all LCIDs */ member in struct:quic_lcidm_st
105 QUIC_LCIDM *ossl_quic_lcidm_new(OSSL_LIB_CTX *libctx, size_t lcid_len)
109 if (lcid_len > QUIC_MAX_CONN_ID_LEN)
129 lcidm->lcid_len = lcid_len;
291 return lcidm->lcid_len;
312 lcidm->next_lcid.id_len = (unsigned char)lcidm->lcid_len;
315 for (i = lcidm->lcid_len - 1; i >= 0; --i)
321 return ossl_quic_gen_rand_conn_id(lcidm->libctx, lcidm->lcid_len, cid);
  /src/crypto/external/apache2/openssl/dist/test/
quic_lcidm_test.c 25 size_t lcid_len = 10; /* != ODCID len */ local
32 if (!TEST_ptr(lcidm = ossl_quic_lcidm_new(NULL, lcid_len)))
35 if (!TEST_size_t_eq(ossl_quic_lcidm_get_lcid_len(lcidm), lcid_len))
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_lcidm.h 82 * lcid_len below). The only exception to this is (1); the ODCID is the only
101 * Creates a new LCIDM. lcid_len is the length to use for LCIDs in bytes, which
106 QUIC_LCIDM *ossl_quic_lcidm_new(OSSL_LIB_CTX *libctx, size_t lcid_len);
136 * not generate ourselves, or allow an LCID with a different length to lcid_len.

Completed in 25 milliseconds