/freebsd/crypto/openssl/include/openssl/ |
H A D | comp.h | 64 typedef struct ssl_comp_st SSL_COMP; typedef 66 SKM_DEFINE_STACK_OF_INTERNAL(SSL_COMP, SSL_COMP, SSL_COMP) 68 #define sk_SSL_COMP_value(sk, idx) ((SSL_COMP *)OPENSSL_sk_value(ossl_check_const_SSL_COMP_sk_type(… 69 #define sk_SSL_COMP_new(cmp) ((STACK_OF(SSL_COMP) *)OPENSSL_sk_new(ossl_check_SSL_COMP_compfunc_typ… 70 #define sk_SSL_COMP_new_null() ((STACK_OF(SSL_COMP) *)OPENSSL_sk_new_null()) 71 #define sk_SSL_COMP_new_reserve(cmp, n) ((STACK_OF(SSL_COMP) *)OPENSSL_sk_new_reserve(ossl_check_SS… 75 #define sk_SSL_COMP_delete(sk, i) ((SSL_COMP *)OPENSSL_sk_delete(ossl_check_SSL_COMP_sk_type(sk), (… 76 #define sk_SSL_COMP_delete_ptr(sk, ptr) ((SSL_COMP *)OPENSSL_sk_delete_ptr(ossl_check_SSL_COMP_sk_t… 79 #define sk_SSL_COMP_pop(sk) ((SSL_COMP *)OPENSSL_sk_pop(ossl_check_SSL_COMP_sk_type(sk))) 80 #define sk_SSL_COMP_shift(sk) ((SSL_COMP *)OPENSSL_sk_shift(ossl_check_SSL_COMP_sk_type(sk))) [all …]
|
H A D | comp.h.in | 66 typedef struct ssl_comp_st SSL_COMP; typedef 69 generate_stack_macros("SSL_COMP");
|
H A D | ssl.h | 2284 __owur const char *SSL_COMP_get0_name(const SSL_COMP *comp); 2285 __owur int SSL_COMP_get_id(const SSL_COMP *comp); 2286 STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void); 2287 __owur STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP)
|
H A D | ssl.h.in | 2237 __owur const char *SSL_COMP_get0_name(const SSL_COMP *comp); 2238 __owur int SSL_COMP_get_id(const SSL_COMP *comp); 2239 STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void); 2240 __owur STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP)
|
/freebsd/crypto/openssl/crypto/ |
H A D | comp_methods.c | 22 static int sk_comp_cmp(const SSL_COMP *const *a, const SSL_COMP *const *b) in sk_comp_cmp() 28 STACK_OF(SSL_COMP) *ossl_load_builtin_compressions(void) in STACK_OF() argument 30 STACK_OF(SSL_COMP) *comp_methods = NULL; in STACK_OF() 32 SSL_COMP *comp = NULL; in STACK_OF() 51 static void cmeth_free(SSL_COMP *cm) in cmeth_free() 56 void ossl_free_compression_methods_int(STACK_OF(SSL_COMP) *methods) in ossl_free_compression_methods_int()
|
H A D | context.c | 53 STACK_OF(SSL_COMP) *comp_methods;
|
/freebsd/crypto/openssl/ssl/ |
H A D | ssl_ciph.c | 501 SSL_COMP **comp, int use_etm) in ssl_cipher_get_evp() 510 SSL_COMP ctmp; in ssl_cipher_get_evp() 511 STACK_OF(SSL_COMP) *comp_methods; in ssl_cipher_get_evp() 1943 SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n) in ssl3_comp_find() 1945 SSL_COMP *ctmp; in ssl3_comp_find() 1946 SSL_COMP srch_key; in ssl3_comp_find() 1962 STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void) in STACK_OF() argument 1967 STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) in STACK_OF() argument 1979 STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void) in STACK_OF() argument 1981 STACK_OF(SSL_COMP) **rv; in STACK_OF() [all …]
|
H A D | ssl_txt.c | 119 SSL_COMP *comp = NULL; in SSL_SESSION_print()
|
H A D | s3_enc.c | 97 const SSL_COMP *comp = NULL; in ssl3_change_cipher_state() 169 SSL_COMP *comp; in ssl3_setup_key_block()
|
H A D | t1_enc.c | 121 const SSL_COMP *comp = NULL; in tls1_change_cipher_state() 261 SSL_COMP *comp; in tls1_setup_key_block()
|
H A D | ssl_local.h | 903 STACK_OF(SSL_COMP) *comp_methods; /* stack of SSL_COMP, SSLv3/TLSv1 */ 1379 const SSL_COMP *new_compression; 2577 SSL_COMP **comp, int use_etm); 2838 SSL_COMP *ssl3_comp_find(STACK_OF(SSL_COMP) *sk, int n);
|
/freebsd/crypto/openssl/include/internal/ |
H A D | cryptlib.h | 173 STACK_OF(SSL_COMP) *ossl_load_builtin_compressions(void); 174 void ossl_free_compression_methods_int(STACK_OF(SSL_COMP) *methods);
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | SSL_COMP_add_compression_method.pod | 14 STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void); 15 const char *SSL_COMP_get0_name(const SSL_COMP *comp); 16 int SSL_COMP_get_id(const SSL_COMP *comp);
|
/freebsd/crypto/openssl/test/ |
H A D | tls13secretstest.c | 177 SSL_COMP **comp, int use_etm) in ssl_cipher_get_evp() 235 const SSL_COMP *comp, const EVP_MD *kdfdigest) in ssl_set_new_record_layer()
|
H A D | ssl_old_test.c | 927 STACK_OF(SSL_COMP) *ssl_comp_methods = NULL; in main() 1348 const SSL_COMP *c = sk_SSL_COMP_value(ssl_comp_methods, j); in main()
|
/freebsd/crypto/openssl/fuzz/ |
H A D | client.c | 41 STACK_OF(SSL_COMP) *comp_methods; in time()
|
H A D | dtlsclient.c | 41 STACK_OF(SSL_COMP) *comp_methods; in time()
|
H A D | dtlsserver.c | 573 STACK_OF(SSL_COMP) *comp_methods; in time()
|
H A D | server.c | 494 STACK_OF(SSL_COMP) *comp_methods; in time()
|
H A D | quic-server.c | 31 STACK_OF(SSL_COMP) *comp_methods; in FuzzerInitialize()
|
H A D | quic-client.c | 31 STACK_OF(SSL_COMP) *comp_methods; in FuzzerInitialize()
|
/freebsd/crypto/openssl/ssl/record/ |
H A D | record.h | 182 const SSL_COMP *comp, const EVP_MD *kdfdigest);
|
H A D | rec_layer_s3.c | 1249 const SSL_COMP *comp, const EVP_MD *kdfdigest) in ssl_set_new_record_layer()
|
/freebsd/crypto/openssl/util/ |
H A D | indent.pro | 389 -T SSL_COMP
|
/freebsd/crypto/openssl/ssl/statem/ |
H A D | statem_clnt.c | 1183 SSL_COMP *comp; in tls_construct_client_hello() 1482 SSL_COMP *comp; in tls_process_server_hello()
|