Home
last modified time | relevance | path

Searched refs:payload (Results 1 – 22 of 22) sorted by relevance

/openssl/util/perl/TLSProxy/
H A DMessage.pm147 my $payload = "";
162 $payload = "";
186 if ($serverin != $server && length($payload) != 0) {
192 if ($payload ne "") {
209 if (length $payload > 0) {
215 if ($messlen <= length($payload)) {
232 $payload, $startoffset, $isdtls);
235 $payload = "";
238 $payload .= $record->decrypt_data;
277 $payload = "";
[all …]
/openssl/include/internal/
H A Devent_queue.h40 void *payload; /* Event specific data of unknown kind */ member
55 void *payload, size_t payload_size);
89 return event->payload; in ossl_event_get0_payload()
108 void *payload, size_t payload_size)
121 void *payload, size_t payload_size);
/openssl/ssl/
H A Devent_queue.c96 void *payload, size_t payload_size) in ossl_event_set() argument
102 event->payload = payload; in ossl_event_set()
109 void *payload, size_t payload_size) in ossl_event_queue_add_new() argument
118 ossl_event_set(e, type, priority, when, ctx, payload, payload_size); in ossl_event_queue_add_new()
129 void *payload, size_t payload_size) in ossl_event_queue_add() argument
133 ossl_event_set(event, type, priority, when, ctx, payload, payload_size); in ossl_event_queue_add()
/openssl/doc/man3/
H A DDTLS_get_data_mtu.pod5 DTLS_get_data_mtu - Get maximum data payload size
15 This function obtains the maximum data payload size for the established
21 Returns the maximum data payload size on success, or 0 on failure.
H A DSSL_inject_net_dgram.pod18 This function can be used to inject a datagram payload to a QUIC connection SSL
19 object. The payload is processed as though it was received from the network.
23 I<buf> is required and must point to a datagram payload to inject. I<buf_len> is
H A DBIO_s_datagram.pod171 overhead which should typically be added to a datagram payload size in order to
173 datagram. In most cases, the maximum datagram payload size which can be
206 Returns the estimated minimum size of datagram payload which should always be
210 circumstances. The value returned is the datagram payload size in bytes and does
H A DPEM_read_bio_ex.pod22 the possibly encrypted data, and the binary data payload (after base64 decoding).
H A DEVP_EncryptInit.pod950 written to the same location in the output buffer that the ciphertext payload
957 payload, and the tag bytes.
959 beginning of the output buffer, do "in place" encryption of the payload and
964 OSSL_FUNC_cipher_cipher call should be the length of the payload excluding the explicit
/openssl/test/
H A Devent_queue_test.c30 static char payload[] = "payload"; in event_test() local
37 PAYLOAD(payload))) in event_test()
57 || !TEST_str_eq((char *)p, payload) in event_test()
H A Dasynciotest.c149 PACKET payload, wholebody, sessionid, extensions; in async_write() local
156 || !PACKET_get_length_prefixed_2(&pkt, &payload)) in async_write()
162 wholebody = payload; in async_write()
205 while (PACKET_get_1(&payload, &data)) { in async_write()
H A Dquic_record_test.c1947 const unsigned char *payload; member
2816 if (!TEST_true(cmp_pkt_hdr(&hdr, &t->hdr, t->payload, t->payload_len, 1))) in test_wire_pkt_hdr_actual()
2841 if (!TEST_true(WPACKET_memcpy(&wpkt, t->payload, t->payload_len))) in test_wire_pkt_hdr_actual()
/openssl/doc/internal/man3/
H A DOSSL_EVENT.pod32 void *payload, size_t payload_size);
36 void *payload, size_t payload_size);
87 =item payload, payload_size
102 The reference to the auxiliary identifying material or to the payload,
135 B<ossl_event_get0_payload> returns the payload for the I<event>, the length
136 of the payload is stored in I<length>.
174 B<ossl_event_get0_payload> returns a pointer to the event's payload.
/openssl/doc/designs/quic-design/
H A Dglossary.md37 **CMPPL:** The maximum number of payload bytes we can put in the payload of
40 left for another packet payload.
97 **MDPL:** Maximum Datagram Payload Length. The maximum number of UDP payload
114 payload in order to meet the MinPL minimum size when the packet is encoded.
120 **MPPL:** The maximum number of plaintext bytes we can put in the payload of a
244 **RCMPPL:** The number of bytes left in a packet whose payload we are currently
245 forming. This is the CMPPL minus any bytes we have already put into the payload.
H A Drecord-layer.md8 contain some header data and some payload data, and will often be
177 All of the header and payload data for a single record will be represented by an
185 records in one go or not. It is libssl's responsibility to split the payload
187 `get_max_records()` function to determine how many records a given payload
213 and supplies a pointer into that buffer back to libssl for the payload data, as
242 layer will add to the payload bytes before transmission. This does not include
341 * buffer of payload data in |buf| of length |buflen|.
474 * The record templates represent the plaintext payload. The encrypted
498 * record layer buffer containing the record payload data and |*datalen|
H A Dtx-packetiser.md211 - Maximum Datagram Payload Length (MDPL): The maximum number of UDP payload
222 bytes we can put in the payload of a QUIC packet. This is related to
231 - Coalescing MPPL (CMPPL): The maximum number of payload bytes we can put in
232 the payload of another QUIC packet which is to be coalesced with one or
234 this is the room we have left for another packet payload.
236 - Remaining CMPPL (RCMPPL): The number of bytes left in a packet whose payload
238 put into the payload.
251 which must be placed into a packet payload in order to meet the MinPL
426 consume most of our packet's payload budget. We must generally assume that
682 * The maximum datagram payload length (MDPL)
H A Dquic-fc.md63 payload, the first time it is sent (retransmissions do not count).
120 the number of bytes of STREAM frame payload which are not retransmissions). This
194 stream payload bytes) have been received).
233 the STREAM frame and the length of the frame's payload in bytes. The isFin
H A Dquic-fault-injector.md120 the payload will be in an iovec array pointed to by `iovecin` and containing
359 /* The packet payload data */
361 /* Length of the payload */
413 * value (8 byte length integer) and with no payload bytes
H A Drx-depacketizer.md157 [^4]: The frame payload (Stream Data) is passed as is to the `QUIC_STREAM`
H A Dquic-tls.md199 alert data supplied by the TLS implementation (always a 2 byte record payload)
H A Dquic-ackm.md119 payload of the packet, but provides metadata about the packet which is relevant
/openssl/doc/man1/
H A Dopenssl-s_time.pod.in37 and includes the time to transfer the payload data in its timing measurements.
59 any payload data.
116 and optionally transfer payload data from a server. Server and client
/openssl/
H A DCHANGES.md1280 decodes the "name" (e.g. "CERTIFICATE"), any header data and the payload
1284 possible to construct a PEM file that results in 0 bytes of payload data.
10959 receiving specific incorrect SSL/TLS records once record payload

Completed in 134 milliseconds