| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_record_shared.h | 97 uint32_t enc_level); 100 * Returns EL in a set. If enc_level is not a valid QUIC_ENC_LEVEL_* value, 105 uint32_t enc_level, 112 uint32_t enc_level, 125 uint32_t enc_level, 131 uint32_t enc_level); 135 uint32_t enc_level); 142 uint32_t enc_level); 148 uint32_t enc_level);
|
| quic_record_shared.c | 21 uint32_t enc_level, 26 if (!ossl_assert(enc_level < QUIC_ENC_LEVEL_NUM)) 29 el = &els->el[enc_level]; 45 uint32_t enc_level) 47 OSSL_QRL_ENC_LEVEL *el = ossl_qrl_enc_level_set_get(els, enc_level, 0); 63 uint32_t enc_level, 67 OSSL_QRL_ENC_LEVEL *el = ossl_qrl_enc_level_set_get(els, enc_level, 0); 75 return enc_level == QUIC_ENC_LEVEL_1RTT || keyslot == 0; 77 assert(enc_level == QUIC_ENC_LEVEL_1RTT); 85 uint32_t enc_level, [all...] |
| quic_txp.c | 160 uint32_t enc_level; member in struct:tx_helper 190 uint32_t enc_level, size_t max_ppl, size_t reserve) 196 h->enc_level = enc_level; 207 if (max_ppl > h->txp->el[enc_level].scratch_len) { 210 scratch = OPENSSL_realloc(h->txp->el[enc_level].scratch, max_ppl); 214 h->txp->el[enc_level].scratch = scratch; 215 h->txp->el[enc_level].scratch_len = max_ppl; 252 struct txp_el *el = &h->txp->el[h->enc_level]; 291 struct txp_el *el = &h->txp->el[h->enc_level]; 581 uint32_t enc_level; local 858 uint32_t archetype, enc_level; local 1909 const uint32_t enc_level = pkt->h.enc_level; local 2124 const uint32_t enc_level = pkt->h.enc_level; local 2282 const uint32_t enc_level = pkt->h.enc_level; local 2656 const uint32_t enc_level = pkt->h.enc_level; local 2975 uint32_t enc_level = pkt->h.enc_level; local 3219 uint32_t enc_level, pn_space; local [all...] |
| quic_record_tx.c | 181 uint32_t enc_level, 187 if (enc_level >= QUIC_ENC_LEVEL_NUM) 193 enc_level, 202 int ossl_qtx_discard_enc_level(OSSL_QTX *qtx, uint32_t enc_level) 204 if (enc_level >= QUIC_ENC_LEVEL_NUM) 207 ossl_qrl_enc_level_set_discard(&qtx->el_set, enc_level); 211 int ossl_qtx_is_enc_level_provisioned(OSSL_QTX *qtx, uint32_t enc_level) 213 return ossl_qrl_enc_level_set_get(&qtx->el_set, enc_level, 1) != NULL; 404 int ossl_qtx_calculate_ciphertext_payload_len(OSSL_QTX *qtx, uint32_t enc_level, 409 = ossl_qrl_enc_level_set_get(&qtx->el_set, enc_level, 1) 801 uint32_t enc_level; local [all...] |
| quic_record_rx.c | 187 QUIC_PN pn, uint32_t enc_level, 494 int ossl_qrx_provide_secret(OSSL_QRX *qrx, uint32_t enc_level, 498 if (enc_level >= QUIC_ENC_LEVEL_NUM) 504 enc_level, 522 int ossl_qrx_discard_enc_level(OSSL_QRX *qrx, uint32_t enc_level) 524 if (enc_level >= QUIC_ENC_LEVEL_NUM) 527 ossl_qrl_enc_level_set_discard(&qrx->el_set, enc_level); 718 uint32_t enc_level; local 720 enc_level = qrx_determine_enc_level(&rxe->hdr); 721 return ossl_quic_enc_level_to_pn_space(enc_level); 1024 uint32_t pn_space, enc_level; local [all...] |
| quic_channel.c | 90 uint32_t enc_level); 800 const uint32_t enc_level = QUIC_ENC_LEVEL_1RTT; local 803 cur_pkt_count = ossl_qtx_get_cur_epoch_pkt_count(ch->qtx, enc_level); 804 max_pkt_count = ossl_qtx_get_max_epoch_pkt_count(ch->qtx, enc_level); 965 uint32_t enc_level = ch->tx_enc_level; local 966 uint32_t pn_space = ossl_quic_enc_level_to_pn_space(enc_level); 1055 uint32_t enc_level; local 1060 enc_level = QUIC_ENC_LEVEL_0RTT; 1064 enc_level = QUIC_ENC_LEVEL_HANDSHAKE; 1068 enc_level = QUIC_ENC_LEVEL_1RTT 2188 uint32_t enc_level; local 2302 uint32_t enc_level; local [all...] |
| quic_rx_depack.c | 45 uint32_t enc_level, 57 ossl_quic_tx_packetiser_schedule_ack_eliciting(ch->txp, enc_level); 1048 OSSL_QRX_PKT *parent_pkt, uint32_t enc_level, 1052 uint32_t packet_space = ossl_quic_enc_level_to_pn_space(enc_level); 1113 if (!depack_do_frame_ping(pkt, ch, enc_level, ackm_data)) 1428 uint32_t enc_level; local 1444 enc_level = ossl_quic_pkt_type_to_enc_level(qpacket->hdr->type); 1445 if (enc_level >= QUIC_ENC_LEVEL_NUM) 1452 ackm_data.pkt_space = ossl_quic_enc_level_to_pn_space(enc_level); 1462 if (enc_level == QUIC_ENC_LEVEL_HANDSHAKE [all...] |
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| quic_record_tx.h | 83 * enc_level is a QUIC_ENC_LEVEL_* value. 115 uint32_t enc_level, 128 int ossl_qtx_discard_enc_level(OSSL_QTX *qtx, uint32_t enc_level); 131 int ossl_qtx_is_enc_level_provisioned(OSSL_QTX *qtx, uint32_t enc_level); 139 int ossl_qtx_calculate_plaintext_payload_len(OSSL_QTX *qtx, uint32_t enc_level, 149 int ossl_qtx_calculate_ciphertext_payload_len(OSSL_QTX *qtx, uint32_t enc_level, 353 * a key update and incremented for each packet queued. If enc_level is not 357 uint64_t ossl_qtx_get_cur_epoch_pkt_count(OSSL_QTX *qtx, uint32_t enc_level); 372 * specified enc_level or the enc_level argument is invalid, this functio [all...] |
| quic_types.h | 39 ossl_quic_enc_level_to_pn_space(uint32_t enc_level) 41 switch (enc_level) {
|
| quic_record_rx.h | 132 * enc_level is a QUIC_ENC_LEVEL_* value. To initialise the INITIAL encryption 164 uint32_t enc_level, 189 int ossl_qrx_discard_enc_level(OSSL_QRX *qrx, uint32_t enc_level); 567 uint32_t enc_level);
|
| quic_wire_pkt.h | 52 ossl_quic_enc_level_to_pkt_type(uint32_t enc_level) 54 switch (enc_level) {
|
| quic_txp.h | 170 * The TXP will no longer reference the crypto[enc_level] QUIC_SSTREAM which was 175 uint32_t enc_level);
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_record_test.c | 43 uint32_t enc_level, suite_id; member in struct:rx_test_op 9072 s.args.short_conn_id_len = op->enc_level; 9087 if (!TEST_true(ossl_qrx_provide_secret(s.qrx, op->enc_level, 9104 if (!TEST_true(ossl_qrx_discard_enc_level(s.qrx, op->enc_level))) 9168 op->enc_level))) 9174 s.args.init_key_phase_bit = (unsigned char)op->enc_level; 10269 uint32_t enc_level, suite_id; member in struct:tx_test_op 11310 if (!TEST_true(ossl_qtx_provide_secret(qtx, op->enc_level, 11323 if (!TEST_true(ossl_qtx_discard_enc_level(qtx, op->enc_level))) 11327 uint32_t enc_level local [all...] |