Searched refs:cleanse (Results 1 – 14 of 14) sorted by relevance
/openssl/ssl/quic/ |
H A D | quic_rstream.c | 46 int cleanse; in ossl_quic_rstream_free() local 51 cleanse = qrs->fl.cleanse; in ossl_quic_rstream_free() 53 ring_buf_destroy(&qrs->rbuf, cleanse); in ossl_quic_rstream_free() 126 ring_buf_cpop_range(&qrs->rbuf, 0, offset - 1, qrs->fl.cleanse); in read_internal() 251 ring_buf_cpop_range(&qrs->rbuf, 0, offset - 1, qrs->fl.cleanse); in ossl_quic_rstream_release_record() 286 if (!ring_buf_resize(&qrs->rbuf, rbuf_size, qrs->fl.cleanse)) in ossl_quic_rstream_resize_rbuf() 292 void ossl_quic_rstream_set_cleanse(QUIC_RSTREAM *qrs, int cleanse) in ossl_quic_rstream_set_cleanse() argument 294 qrs->fl.cleanse = cleanse; in ossl_quic_rstream_set_cleanse()
|
H A D | quic_sstream.c | 55 unsigned int cleanse : 1; member 87 ring_buf_destroy(&qss->ring_buf, qss->cleanse); in ossl_quic_sstream_free() 354 qss->cleanse); in qss_cull() 359 return ring_buf_resize(&qss->ring_buf, num_bytes, qss->cleanse); in ossl_quic_sstream_set_buffer_size() 421 void ossl_quic_sstream_set_cleanse(QUIC_SSTREAM *qss, int cleanse) in ossl_quic_sstream_set_cleanse() argument 423 qss->cleanse = cleanse; in ossl_quic_sstream_set_cleanse()
|
H A D | quic_sf_list.c | 23 if (fl->cleanse && sf->data != NULL) in stream_frame_free() 301 if (fl->cleanse) in ossl_sframe_list_move_data()
|
H A D | quic_impl.c | 708 int cleanse = ((xso->ssl_options & SSL_OP_CLEANSE_PLAINTEXT) != 0); in xso_update_options() local 711 ossl_quic_rstream_set_cleanse(xso->stream->rstream, cleanse); in xso_update_options() 714 ossl_quic_sstream_set_cleanse(xso->stream->sstream, cleanse); in xso_update_options()
|
/openssl/include/internal/ |
H A D | ring_buf.h | 55 static ossl_inline void ring_buf_destroy(struct ring_buf *r, int cleanse) in ring_buf_destroy() argument 57 if (cleanse) in ring_buf_destroy() 201 int cleanse) in ring_buf_cpop_range() argument 208 if (cleanse && r->alloc > 0 && end > r->ctail_offset) { in ring_buf_cpop_range() 232 int cleanse) in ring_buf_resize() argument 272 ring_buf_destroy(r, cleanse); in ring_buf_resize()
|
H A D | quic_stream.h | 301 void ossl_quic_sstream_set_cleanse(QUIC_SSTREAM *qss, int cleanse); 425 void ossl_quic_rstream_set_cleanse(QUIC_RSTREAM *qrs, int cleanse);
|
H A D | quic_sf_list.h | 53 int cleanse; member
|
/openssl/apps/ |
H A D | cmp.c | 1175 cleanse(opt_srv_keypass); in setup_srv_ctx() 1520 cleanse(opt_secret); in setup_protection_ctx() 1583 cleanse(opt_otherpass); in setup_protection_ctx() 1948 cleanse(opt_keypass); in setup_request_ctx() 3804 cleanse(opt_keypass); in cmp_main() 3805 cleanse(opt_newkeypass); in cmp_main() 3806 cleanse(opt_otherpass); in cmp_main() 3808 cleanse(opt_tls_keypass); in cmp_main() 3810 cleanse(opt_secret); in cmp_main() 3811 cleanse(opt_srv_keypass); in cmp_main() [all …]
|
H A D | enc.c | 620 cleanse(hkey); in enc_main()
|
H A D | ca.c | 595 cleanse(passin); in ca_main() 1309 cleanse(passin); in ca_main()
|
/openssl/util/ |
H A D | check-format-test-negatives.c | 106 cleanse(opt_srv_secret); in f()
|
/openssl/apps/include/ |
H A D | apps.h | 129 void cleanse(char *str);
|
/openssl/apps/lib/ |
H A D | apps.c | 593 void cleanse(char *str) in cleanse() function
|
/openssl/ |
H A D | CHANGES.md | 15743 * New function OPENSSL_cleanse(), which is used to cleanse a section of
|
Completed in 170 milliseconds