1 /* 2 * Namespace munging inspired by an equivalent hack in NetBSD's tree: add 3 * the "ssh_" prefix to every symbol in libssh which doesn't already have 4 * it. This prevents collisions between symbols in libssh and symbols in 5 * other libraries or applications which link with libssh, either directly 6 * or indirectly (e.g. through PAM loading pam_ssh). 7 * 8 * A list of symbols which need munging is obtained as follows: 9 * 10 # nm libprivatessh.a | LC_ALL=C awk ' 11 /^[0-9a-z]+ [Tt] [A-Za-z_][0-9A-Za-z_]*$/ && $3 !~ /^ssh_/ { 12 printf("#define %-39s ssh_%s\n", $3, $3) 13 }' | unexpand -a | LC_ALL=C sort -u 14 * 15 * $FreeBSD$ 16 */ 17 18 #define Blowfish_decipher ssh_Blowfish_decipher 19 #define Blowfish_encipher ssh_Blowfish_encipher 20 #define Blowfish_expand0state ssh_Blowfish_expand0state 21 #define Blowfish_expandstate ssh_Blowfish_expandstate 22 #define Blowfish_initstate ssh_Blowfish_initstate 23 #define Blowfish_stream2word ssh_Blowfish_stream2word 24 #define a2port ssh_a2port 25 #define a2tun ssh_a2tun 26 #define add_host_to_hostfile ssh_add_host_to_hostfile 27 #define add_p1p1 ssh_add_p1p1 28 #define addargs ssh_addargs 29 #define addr_match_cidr_list ssh_addr_match_cidr_list 30 #define addr_match_list ssh_addr_match_list 31 #define addr_netmatch ssh_addr_netmatch 32 #define addr_pton ssh_addr_pton 33 #define addr_pton_cidr ssh_addr_pton_cidr 34 #define ask_permission ssh_ask_permission 35 #define atomicio ssh_atomicio 36 #define atomicio6 ssh_atomicio6 37 #define atomiciov ssh_atomiciov 38 #define atomiciov6 ssh_atomiciov6 39 #define auth_request_forwarding ssh_auth_request_forwarding 40 #define bandwidth_limit ssh_bandwidth_limit 41 #define bandwidth_limit_init ssh_bandwidth_limit_init 42 #define barrett_reduce ssh_barrett_reduce 43 #define bcrypt_hash ssh_bcrypt_hash 44 #define bcrypt_pbkdf ssh_bcrypt_pbkdf 45 #define bf_ssh1_cipher ssh_bf_ssh1_cipher 46 #define blf_cbc_decrypt ssh_blf_cbc_decrypt 47 #define blf_cbc_encrypt ssh_blf_cbc_encrypt 48 #define blf_dec ssh_blf_dec 49 #define blf_ecb_decrypt ssh_blf_ecb_decrypt 50 #define blf_ecb_encrypt ssh_blf_ecb_encrypt 51 #define blf_enc ssh_blf_enc 52 #define blf_key ssh_blf_key 53 #define buffer_append ssh_buffer_append 54 #define buffer_append_space ssh_buffer_append_space 55 #define buffer_check_alloc ssh_buffer_check_alloc 56 #define buffer_compress ssh_buffer_compress 57 #define buffer_compress_init_recv ssh_buffer_compress_init_recv 58 #define buffer_compress_init_send ssh_buffer_compress_init_send 59 #define buffer_compress_uninit ssh_buffer_compress_uninit 60 #define buffer_consume ssh_buffer_consume 61 #define buffer_consume_end ssh_buffer_consume_end 62 #define buffer_consume_end_ret ssh_buffer_consume_end_ret 63 #define buffer_consume_ret ssh_buffer_consume_ret 64 #define buffer_get ssh_buffer_get 65 #define buffer_get_bignum ssh_buffer_get_bignum 66 #define buffer_get_bignum2 ssh_buffer_get_bignum2 67 #define buffer_get_bignum2_ret ssh_buffer_get_bignum2_ret 68 #define buffer_get_bignum_ret ssh_buffer_get_bignum_ret 69 #define buffer_get_char ssh_buffer_get_char 70 #define buffer_get_char_ret ssh_buffer_get_char_ret 71 #define buffer_get_cstring ssh_buffer_get_cstring 72 #define buffer_get_cstring_ret ssh_buffer_get_cstring_ret 73 #define buffer_get_ecpoint ssh_buffer_get_ecpoint 74 #define buffer_get_ecpoint_ret ssh_buffer_get_ecpoint_ret 75 #define buffer_get_int ssh_buffer_get_int 76 #define buffer_get_int64 ssh_buffer_get_int64 77 #define buffer_get_int64_ret ssh_buffer_get_int64_ret 78 #define buffer_get_int_ret ssh_buffer_get_int_ret 79 #define buffer_get_ret ssh_buffer_get_ret 80 #define buffer_get_short ssh_buffer_get_short 81 #define buffer_get_short_ret ssh_buffer_get_short_ret 82 #define buffer_get_string ssh_buffer_get_string 83 #define buffer_get_string_ptr ssh_buffer_get_string_ptr 84 #define buffer_get_string_ptr_ret ssh_buffer_get_string_ptr_ret 85 #define buffer_get_string_ret ssh_buffer_get_string_ret 86 #define buffer_put_bignum ssh_buffer_put_bignum 87 #define buffer_put_bignum2 ssh_buffer_put_bignum2 88 #define buffer_put_bignum2_from_string ssh_buffer_put_bignum2_from_string 89 #define buffer_put_bignum2_ret ssh_buffer_put_bignum2_ret 90 #define buffer_put_bignum_ret ssh_buffer_put_bignum_ret 91 #define buffer_put_char ssh_buffer_put_char 92 #define buffer_put_cstring ssh_buffer_put_cstring 93 #define buffer_put_ecpoint ssh_buffer_put_ecpoint 94 #define buffer_put_ecpoint_ret ssh_buffer_put_ecpoint_ret 95 #define buffer_put_int ssh_buffer_put_int 96 #define buffer_put_int64 ssh_buffer_put_int64 97 #define buffer_put_short ssh_buffer_put_short 98 #define buffer_put_string ssh_buffer_put_string 99 #define buffer_uncompress ssh_buffer_uncompress 100 #define cert_free ssh_cert_free 101 #define cert_new ssh_cert_new 102 #define chacha_encrypt_bytes ssh_chacha_encrypt_bytes 103 #define chacha_ivsetup ssh_chacha_ivsetup 104 #define chacha_keysetup ssh_chacha_keysetup 105 #define chachapoly_crypt ssh_chachapoly_crypt 106 #define chachapoly_get_length ssh_chachapoly_get_length 107 #define chachapoly_init ssh_chachapoly_init 108 #define chan_ibuf_empty ssh_chan_ibuf_empty 109 #define chan_is_dead ssh_chan_is_dead 110 #define chan_mark_dead ssh_chan_mark_dead 111 #define chan_obuf_empty ssh_chan_obuf_empty 112 #define chan_rcvd_eow ssh_chan_rcvd_eow 113 #define chan_rcvd_ieof ssh_chan_rcvd_ieof 114 #define chan_rcvd_oclose ssh_chan_rcvd_oclose 115 #define chan_read_failed ssh_chan_read_failed 116 #define chan_send_eof2 ssh_chan_send_eof2 117 #define chan_send_oclose1 ssh_chan_send_oclose1 118 #define chan_shutdown_read ssh_chan_shutdown_read 119 #define chan_shutdown_write ssh_chan_shutdown_write 120 #define chan_write_failed ssh_chan_write_failed 121 #define channel_add_adm_permitted_opens ssh_channel_add_adm_permitted_opens 122 #define channel_add_permitted_opens ssh_channel_add_permitted_opens 123 #define channel_after_select ssh_channel_after_select 124 #define channel_by_id ssh_channel_by_id 125 #define channel_cancel_cleanup ssh_channel_cancel_cleanup 126 #define channel_cancel_lport_listener ssh_channel_cancel_lport_listener 127 #define channel_cancel_rport_listener ssh_channel_cancel_rport_listener 128 #define channel_clear_adm_permitted_opens ssh_channel_clear_adm_permitted_opens 129 #define channel_clear_permitted_opens ssh_channel_clear_permitted_opens 130 #define channel_close_all ssh_channel_close_all 131 #define channel_close_fd ssh_channel_close_fd 132 #define channel_close_fds ssh_channel_close_fds 133 #define channel_connect_by_listen_address ssh_channel_connect_by_listen_address 134 #define channel_connect_by_listen_path ssh_channel_connect_by_listen_path 135 #define channel_connect_stdio_fwd ssh_channel_connect_stdio_fwd 136 #define channel_connect_to_path ssh_channel_connect_to_path 137 #define channel_connect_to_port ssh_channel_connect_to_port 138 #define channel_disable_adm_local_opens ssh_channel_disable_adm_local_opens 139 #define channel_find_open ssh_channel_find_open 140 #define channel_free ssh_channel_free 141 #define channel_free_all ssh_channel_free_all 142 #define channel_fwd_bind_addr ssh_channel_fwd_bind_addr 143 #define channel_handler ssh_channel_handler 144 #define channel_input_close ssh_channel_input_close 145 #define channel_input_close_confirmation ssh_channel_input_close_confirmation 146 #define channel_input_data ssh_channel_input_data 147 #define channel_input_extended_data ssh_channel_input_extended_data 148 #define channel_input_ieof ssh_channel_input_ieof 149 #define channel_input_oclose ssh_channel_input_oclose 150 #define channel_input_open_confirmation ssh_channel_input_open_confirmation 151 #define channel_input_open_failure ssh_channel_input_open_failure 152 #define channel_input_port_forward_request ssh_channel_input_port_forward_request 153 #define channel_input_port_open ssh_channel_input_port_open 154 #define channel_input_status_confirm ssh_channel_input_status_confirm 155 #define channel_input_window_adjust ssh_channel_input_window_adjust 156 #define channel_lookup ssh_channel_lookup 157 #define channel_new ssh_channel_new 158 #define channel_not_very_much_buffered_data ssh_channel_not_very_much_buffered_data 159 #define channel_open_message ssh_channel_open_message 160 #define channel_output_poll ssh_channel_output_poll 161 #define channel_permit_all_opens ssh_channel_permit_all_opens 162 #define channel_post_auth_listener ssh_channel_post_auth_listener 163 #define channel_post_connecting ssh_channel_post_connecting 164 #define channel_post_mux_client ssh_channel_post_mux_client 165 #define channel_post_mux_listener ssh_channel_post_mux_listener 166 #define channel_post_open ssh_channel_post_open 167 #define channel_post_output_drain_13 ssh_channel_post_output_drain_13 168 #define channel_post_port_listener ssh_channel_post_port_listener 169 #define channel_post_x11_listener ssh_channel_post_x11_listener 170 #define channel_pre_connecting ssh_channel_pre_connecting 171 #define channel_pre_dynamic ssh_channel_pre_dynamic 172 #define channel_pre_input_draining ssh_channel_pre_input_draining 173 #define channel_pre_listener ssh_channel_pre_listener 174 #define channel_pre_mux_client ssh_channel_pre_mux_client 175 #define channel_pre_open ssh_channel_pre_open 176 #define channel_pre_open_13 ssh_channel_pre_open_13 177 #define channel_pre_output_draining ssh_channel_pre_output_draining 178 #define channel_pre_x11_open ssh_channel_pre_x11_open 179 #define channel_pre_x11_open_13 ssh_channel_pre_x11_open_13 180 #define channel_prepare_select ssh_channel_prepare_select 181 #define channel_print_adm_permitted_opens ssh_channel_print_adm_permitted_opens 182 #define channel_register_cleanup ssh_channel_register_cleanup 183 #define channel_register_fds ssh_channel_register_fds 184 #define channel_register_filter ssh_channel_register_filter 185 #define channel_register_open_confirm ssh_channel_register_open_confirm 186 #define channel_register_status_confirm ssh_channel_register_status_confirm 187 #define channel_request_remote_forwarding ssh_channel_request_remote_forwarding 188 #define channel_request_rforward_cancel ssh_channel_request_rforward_cancel 189 #define channel_request_start ssh_channel_request_start 190 #define channel_send_open ssh_channel_send_open 191 #define channel_send_window_changes ssh_channel_send_window_changes 192 #define channel_set_af ssh_channel_set_af 193 #define channel_set_fds ssh_channel_set_fds 194 #define channel_setup_fwd_listener_streamlocal ssh_channel_setup_fwd_listener_streamlocal 195 #define channel_setup_fwd_listener_tcpip ssh_channel_setup_fwd_listener_tcpip 196 #define channel_setup_local_fwd_listener ssh_channel_setup_local_fwd_listener 197 #define channel_setup_remote_fwd_listener ssh_channel_setup_remote_fwd_listener 198 #define channel_still_open ssh_channel_still_open 199 #define channel_stop_listening ssh_channel_stop_listening 200 #define channel_update_permitted_opens ssh_channel_update_permitted_opens 201 #define check_crc ssh_check_crc 202 #define check_hostkeys_by_key_or_type ssh_check_hostkeys_by_key_or_type 203 #define check_key_in_hostkeys ssh_check_key_in_hostkeys 204 #define choose_dh ssh_choose_dh 205 #define choose_t ssh_choose_t 206 #define chop ssh_chop 207 #define cipher_alg_list ssh_cipher_alg_list 208 #define cipher_authlen ssh_cipher_authlen 209 #define cipher_blocksize ssh_cipher_blocksize 210 #define cipher_by_name ssh_cipher_by_name 211 #define cipher_by_number ssh_cipher_by_number 212 #define cipher_cleanup ssh_cipher_cleanup 213 #define cipher_crypt ssh_cipher_crypt 214 #define cipher_get_keycontext ssh_cipher_get_keycontext 215 #define cipher_get_keyiv ssh_cipher_get_keyiv 216 #define cipher_get_keyiv_len ssh_cipher_get_keyiv_len 217 #define cipher_get_length ssh_cipher_get_length 218 #define cipher_get_number ssh_cipher_get_number 219 #define cipher_init ssh_cipher_init 220 #define cipher_is_cbc ssh_cipher_is_cbc 221 #define cipher_ivlen ssh_cipher_ivlen 222 #define cipher_keylen ssh_cipher_keylen 223 #define cipher_mask_ssh1 ssh_cipher_mask_ssh1 224 #define cipher_name ssh_cipher_name 225 #define cipher_number ssh_cipher_number 226 #define cipher_seclen ssh_cipher_seclen 227 #define cipher_set_key_string ssh_cipher_set_key_string 228 #define cipher_set_keycontext ssh_cipher_set_keycontext 229 #define cipher_set_keyiv ssh_cipher_set_keyiv 230 #define cipher_warning_message ssh_cipher_warning_message 231 #define ciphers_valid ssh_ciphers_valid 232 #define cleanhostname ssh_cleanhostname 233 #define cleanup_exit ssh_cleanup_exit 234 #define clear_cached_addr ssh_clear_cached_addr 235 #define colon ssh_colon 236 #define compare ssh_compare 237 #define compare_gps ssh_compare_gps 238 #define compat_cipher_proposal ssh_compat_cipher_proposal 239 #define compat_datafellows ssh_compat_datafellows 240 #define compat_kex_proposal ssh_compat_kex_proposal 241 #define compat_pkalg_proposal ssh_compat_pkalg_proposal 242 #define connect_next ssh_connect_next 243 #define connect_to ssh_connect_to 244 #define convtime ssh_convtime 245 #define crypto_hash_sha512 ssh_crypto_hash_sha512 246 #define crypto_hashblocks_sha512 ssh_crypto_hashblocks_sha512 247 #define crypto_scalarmult_curve25519 ssh_crypto_scalarmult_curve25519 248 #define crypto_sign_ed25519 ssh_crypto_sign_ed25519 249 #define crypto_sign_ed25519_keypair ssh_crypto_sign_ed25519_keypair 250 #define crypto_sign_ed25519_open ssh_crypto_sign_ed25519_open 251 #define crypto_sign_ed25519_ref_double_scalarmult_vartime ssh_crypto_sign_ed25519_ref_double_scalarmult_vartime 252 #define crypto_sign_ed25519_ref_fe25519_add ssh_crypto_sign_ed25519_ref_fe25519_add 253 #define crypto_sign_ed25519_ref_fe25519_cmov ssh_crypto_sign_ed25519_ref_fe25519_cmov 254 #define crypto_sign_ed25519_ref_fe25519_freeze ssh_crypto_sign_ed25519_ref_fe25519_freeze 255 #define crypto_sign_ed25519_ref_fe25519_getparity ssh_crypto_sign_ed25519_ref_fe25519_getparity 256 #define crypto_sign_ed25519_ref_fe25519_invert ssh_crypto_sign_ed25519_ref_fe25519_invert 257 #define crypto_sign_ed25519_ref_fe25519_iseq_vartime ssh_crypto_sign_ed25519_ref_fe25519_iseq_vartime 258 #define crypto_sign_ed25519_ref_fe25519_iszero ssh_crypto_sign_ed25519_ref_fe25519_iszero 259 #define crypto_sign_ed25519_ref_fe25519_mul ssh_crypto_sign_ed25519_ref_fe25519_mul 260 #define crypto_sign_ed25519_ref_fe25519_neg ssh_crypto_sign_ed25519_ref_fe25519_neg 261 #define crypto_sign_ed25519_ref_fe25519_pack ssh_crypto_sign_ed25519_ref_fe25519_pack 262 #define crypto_sign_ed25519_ref_fe25519_pow2523 ssh_crypto_sign_ed25519_ref_fe25519_pow2523 263 #define crypto_sign_ed25519_ref_fe25519_setone ssh_crypto_sign_ed25519_ref_fe25519_setone 264 #define crypto_sign_ed25519_ref_fe25519_setzero ssh_crypto_sign_ed25519_ref_fe25519_setzero 265 #define crypto_sign_ed25519_ref_fe25519_square ssh_crypto_sign_ed25519_ref_fe25519_square 266 #define crypto_sign_ed25519_ref_fe25519_sub ssh_crypto_sign_ed25519_ref_fe25519_sub 267 #define crypto_sign_ed25519_ref_fe25519_unpack ssh_crypto_sign_ed25519_ref_fe25519_unpack 268 #define crypto_sign_ed25519_ref_isneutral_vartime ssh_crypto_sign_ed25519_ref_isneutral_vartime 269 #define crypto_sign_ed25519_ref_pack ssh_crypto_sign_ed25519_ref_pack 270 #define crypto_sign_ed25519_ref_sc25519_2interleave2 ssh_crypto_sign_ed25519_ref_sc25519_2interleave2 271 #define crypto_sign_ed25519_ref_sc25519_add ssh_crypto_sign_ed25519_ref_sc25519_add 272 #define crypto_sign_ed25519_ref_sc25519_from32bytes ssh_crypto_sign_ed25519_ref_sc25519_from32bytes 273 #define crypto_sign_ed25519_ref_sc25519_from64bytes ssh_crypto_sign_ed25519_ref_sc25519_from64bytes 274 #define crypto_sign_ed25519_ref_sc25519_from_shortsc ssh_crypto_sign_ed25519_ref_sc25519_from_shortsc 275 #define crypto_sign_ed25519_ref_sc25519_isshort_vartime ssh_crypto_sign_ed25519_ref_sc25519_isshort_vartime 276 #define crypto_sign_ed25519_ref_sc25519_iszero_vartime ssh_crypto_sign_ed25519_ref_sc25519_iszero_vartime 277 #define crypto_sign_ed25519_ref_sc25519_lt_vartime ssh_crypto_sign_ed25519_ref_sc25519_lt_vartime 278 #define crypto_sign_ed25519_ref_sc25519_mul ssh_crypto_sign_ed25519_ref_sc25519_mul 279 #define crypto_sign_ed25519_ref_sc25519_mul_shortsc ssh_crypto_sign_ed25519_ref_sc25519_mul_shortsc 280 #define crypto_sign_ed25519_ref_sc25519_sub_nored ssh_crypto_sign_ed25519_ref_sc25519_sub_nored 281 #define crypto_sign_ed25519_ref_sc25519_to32bytes ssh_crypto_sign_ed25519_ref_sc25519_to32bytes 282 #define crypto_sign_ed25519_ref_sc25519_window3 ssh_crypto_sign_ed25519_ref_sc25519_window3 283 #define crypto_sign_ed25519_ref_sc25519_window5 ssh_crypto_sign_ed25519_ref_sc25519_window5 284 #define crypto_sign_ed25519_ref_scalarmult_base ssh_crypto_sign_ed25519_ref_scalarmult_base 285 #define crypto_sign_ed25519_ref_shortsc25519_from16bytes ssh_crypto_sign_ed25519_ref_shortsc25519_from16bytes 286 #define crypto_sign_ed25519_ref_unpackneg_vartime ssh_crypto_sign_ed25519_ref_unpackneg_vartime 287 #define crypto_verify_32 ssh_crypto_verify_32 288 #define dbl_p1p1 ssh_dbl_p1p1 289 #define debug ssh_debug 290 #define debug2 ssh_debug2 291 #define debug3 ssh_debug3 292 #define decode_reply ssh_decode_reply 293 #define deny_input_open ssh_deny_input_open 294 #define derive_ssh1_session_id ssh_derive_ssh1_session_id 295 #define detect_attack ssh_detect_attack 296 #define dh_estimate ssh_dh_estimate 297 #define dh_gen_key ssh_dh_gen_key 298 #define dh_new_group ssh_dh_new_group 299 #define dh_new_group1 ssh_dh_new_group1 300 #define dh_new_group14 ssh_dh_new_group14 301 #define dh_new_group_asc ssh_dh_new_group_asc 302 #define dh_pub_is_valid ssh_dh_pub_is_valid 303 #define dispatch_init ssh_dispatch_init 304 #define dispatch_protocol_error ssh_dispatch_protocol_error 305 #define dispatch_protocol_ignore ssh_dispatch_protocol_ignore 306 #define dispatch_range ssh_dispatch_range 307 #define dispatch_run ssh_dispatch_run 308 #define dispatch_set ssh_dispatch_set 309 #define do_log ssh_do_log 310 #define do_log2 ssh_do_log2 311 #define dump_base64 ssh_dump_base64 312 #define enable_compat13 ssh_enable_compat13 313 #define enable_compat20 ssh_enable_compat20 314 #define error ssh_error 315 #define evp_ssh1_3des ssh_evp_ssh1_3des 316 #define evp_ssh1_bf ssh_evp_ssh1_bf 317 #define export_dns_rr ssh_export_dns_rr 318 #define fatal ssh_fatal 319 #define filter_proposal ssh_filter_proposal 320 #define fmt_scaled ssh_fmt_scaled 321 #define free_hostkeys ssh_free_hostkeys 322 #define freeargs ssh_freeargs 323 #define freerrset ssh_freerrset 324 #define gen_candidates ssh_gen_candidates 325 #define get_canonical_hostname ssh_get_canonical_hostname 326 #define get_local_ipaddr ssh_get_local_ipaddr 327 #define get_local_name ssh_get_local_name 328 #define get_local_port ssh_get_local_port 329 #define get_peer_ipaddr ssh_get_peer_ipaddr 330 #define get_peer_port ssh_get_peer_port 331 #define get_remote_ipaddr ssh_get_remote_ipaddr 332 #define get_remote_name_or_ip ssh_get_remote_name_or_ip 333 #define get_remote_port ssh_get_remote_port 334 #define get_sock_port ssh_get_sock_port 335 #define get_socket_address ssh_get_socket_address 336 #define get_u16 ssh_get_u16 337 #define get_u32 ssh_get_u32 338 #define get_u32_le ssh_get_u32_le 339 #define get_u64 ssh_get_u64 340 #define getrrsetbyname ssh_getrrsetbyname 341 #define glob ssh_glob 342 #define glob0 ssh_glob0 343 #define glob2 ssh_glob2 344 #define globexp1 ssh_globexp1 345 #define globextend ssh_globextend 346 #define globfree ssh_globfree 347 #define host_hash ssh_host_hash 348 #define hostfile_read_key ssh_hostfile_read_key 349 #define hpdelim ssh_hpdelim 350 #define init_hostkeys ssh_init_hostkeys 351 #define iptos2str ssh_iptos2str 352 #define ipv64_normalise_mapped ssh_ipv64_normalise_mapped 353 #define is_key_revoked ssh_is_key_revoked 354 #define kex_alg_by_name ssh_kex_alg_by_name 355 #define kex_alg_list ssh_kex_alg_list 356 #define kex_buf2prop ssh_kex_buf2prop 357 #define kex_c25519_hash ssh_kex_c25519_hash 358 #define kex_derive_keys ssh_kex_derive_keys 359 #define kex_derive_keys_bn ssh_kex_derive_keys_bn 360 #define kex_dh_hash ssh_kex_dh_hash 361 #define kex_ecdh_hash ssh_kex_ecdh_hash 362 #define kex_finish ssh_kex_finish 363 #define kex_get_newkeys ssh_kex_get_newkeys 364 #define kex_input_kexinit ssh_kex_input_kexinit 365 #define kex_names_valid ssh_kex_names_valid 366 #define kex_prop_free ssh_kex_prop_free 367 #define kex_protocol_error ssh_kex_protocol_error 368 #define kex_send_kexinit ssh_kex_send_kexinit 369 #define kex_setup ssh_kex_setup 370 #define kexc25519_client ssh_kexc25519_client 371 #define kexc25519_keygen ssh_kexc25519_keygen 372 #define kexc25519_shared_key ssh_kexc25519_shared_key 373 #define kexdh_client ssh_kexdh_client 374 #define kexecdh_client ssh_kexecdh_client 375 #define kexgex_client ssh_kexgex_client 376 #define kexgex_hash ssh_kexgex_hash 377 #define key_add_private ssh_key_add_private 378 #define key_alg_list ssh_key_alg_list 379 #define key_cert_check_authority ssh_key_cert_check_authority 380 #define key_cert_copy ssh_key_cert_copy 381 #define key_certify ssh_key_certify 382 #define key_demote ssh_key_demote 383 #define key_drop_cert ssh_key_drop_cert 384 #define key_ec_validate_private ssh_key_ec_validate_private 385 #define key_ec_validate_public ssh_key_ec_validate_public 386 #define key_fingerprint_raw ssh_key_fingerprint_raw 387 #define key_from_blob ssh_key_from_blob 388 #define key_from_private ssh_key_from_private 389 #define key_generate ssh_key_generate 390 #define key_in_file ssh_key_in_file 391 #define key_load_cert ssh_key_load_cert 392 #define key_load_file ssh_key_load_file 393 #define key_load_private ssh_key_load_private 394 #define key_load_private_cert ssh_key_load_private_cert 395 #define key_load_private_pem ssh_key_load_private_pem 396 #define key_load_private_type ssh_key_load_private_type 397 #define key_load_public ssh_key_load_public 398 #define key_new_private ssh_key_new_private 399 #define key_perm_ok ssh_key_perm_ok 400 #define key_private_deserialize ssh_key_private_deserialize 401 #define key_private_serialize ssh_key_private_serialize 402 #define key_read ssh_key_read 403 #define key_save_private ssh_key_save_private 404 #define key_sign ssh_key_sign 405 #define key_to_blob ssh_key_to_blob 406 #define key_to_certified ssh_key_to_certified 407 #define key_verify ssh_key_verify 408 #define key_write ssh_key_write 409 #define load_hostkeys ssh_load_hostkeys 410 #define log_change_level ssh_log_change_level 411 #define log_facility_name ssh_log_facility_name 412 #define log_facility_number ssh_log_facility_number 413 #define log_init ssh_log_init 414 #define log_is_on_stderr ssh_log_is_on_stderr 415 #define log_level_name ssh_log_level_name 416 #define log_level_number ssh_log_level_number 417 #define log_redirect_stderr_to ssh_log_redirect_stderr_to 418 #define logit ssh_logit 419 #define lookup_key_in_hostkeys_by_type ssh_lookup_key_in_hostkeys_by_type 420 #define lowercase ssh_lowercase 421 #define mac_alg_list ssh_mac_alg_list 422 #define mac_clear ssh_mac_clear 423 #define mac_compute ssh_mac_compute 424 #define mac_init ssh_mac_init 425 #define mac_setup ssh_mac_setup 426 #define mac_valid ssh_mac_valid 427 #define match ssh_match 428 #define match_host_and_ip ssh_match_host_and_ip 429 #define match_hostname ssh_match_hostname 430 #define match_list ssh_match_list 431 #define match_pattern ssh_match_pattern 432 #define match_pattern_list ssh_match_pattern_list 433 #define match_user ssh_match_user 434 #define mktemp_proto ssh_mktemp_proto 435 #define mm_receive_fd ssh_mm_receive_fd 436 #define mm_send_fd ssh_mm_send_fd 437 #define monotime ssh_monotime 438 #define ms_subtract_diff ssh_ms_subtract_diff 439 #define ms_to_timeval ssh_ms_to_timeval 440 #define mult ssh_mult 441 #define mysignal ssh_mysignal 442 #define nh_aux ssh_nh_aux 443 #define nh_final ssh_nh_final 444 #define packet_add_padding ssh_packet_add_padding 445 #define packet_backup_state ssh_packet_backup_state 446 #define packet_close ssh_packet_close 447 #define packet_connection_is_on_socket ssh_packet_connection_is_on_socket 448 #define packet_disconnect ssh_packet_disconnect 449 #define packet_enable_delayed_compress ssh_packet_enable_delayed_compress 450 #define packet_get_bignum ssh_packet_get_bignum 451 #define packet_get_bignum2 ssh_packet_get_bignum2 452 #define packet_get_char ssh_packet_get_char 453 #define packet_get_connection_in ssh_packet_get_connection_in 454 #define packet_get_connection_out ssh_packet_get_connection_out 455 #define packet_get_cstring ssh_packet_get_cstring 456 #define packet_get_ecpoint ssh_packet_get_ecpoint 457 #define packet_get_encryption_key ssh_packet_get_encryption_key 458 #define packet_get_input ssh_packet_get_input 459 #define packet_get_int ssh_packet_get_int 460 #define packet_get_int64 ssh_packet_get_int64 461 #define packet_get_keycontext ssh_packet_get_keycontext 462 #define packet_get_keyiv ssh_packet_get_keyiv 463 #define packet_get_keyiv_len ssh_packet_get_keyiv_len 464 #define packet_get_maxsize ssh_packet_get_maxsize 465 #define packet_get_newkeys ssh_packet_get_newkeys 466 #define packet_get_output ssh_packet_get_output 467 #define packet_get_protocol_flags ssh_packet_get_protocol_flags 468 #define packet_get_raw ssh_packet_get_raw 469 #define packet_get_rekey_timeout ssh_packet_get_rekey_timeout 470 #define packet_get_ssh1_cipher ssh_packet_get_ssh1_cipher 471 #define packet_get_state ssh_packet_get_state 472 #define packet_get_string ssh_packet_get_string 473 #define packet_get_string_ptr ssh_packet_get_string_ptr 474 #define packet_have_data_to_write ssh_packet_have_data_to_write 475 #define packet_inc_alive_timeouts ssh_packet_inc_alive_timeouts 476 #define packet_init_compression ssh_packet_init_compression 477 #define packet_is_interactive ssh_packet_is_interactive 478 #define packet_need_rekeying ssh_packet_need_rekeying 479 #define packet_not_very_much_data_to_write ssh_packet_not_very_much_data_to_write 480 #define packet_process_incoming ssh_packet_process_incoming 481 #define packet_put_bignum ssh_packet_put_bignum 482 #define packet_put_bignum2 ssh_packet_put_bignum2 483 #define packet_put_char ssh_packet_put_char 484 #define packet_put_cstring ssh_packet_put_cstring 485 #define packet_put_ecpoint ssh_packet_put_ecpoint 486 #define packet_put_int ssh_packet_put_int 487 #define packet_put_int64 ssh_packet_put_int64 488 #define packet_put_raw ssh_packet_put_raw 489 #define packet_put_string ssh_packet_put_string 490 #define packet_read ssh_packet_read 491 #define packet_read_expect ssh_packet_read_expect 492 #define packet_read_poll_seqnr ssh_packet_read_poll_seqnr 493 #define packet_read_seqnr ssh_packet_read_seqnr 494 #define packet_remaining ssh_packet_remaining 495 #define packet_restore_state ssh_packet_restore_state 496 #define packet_send ssh_packet_send 497 #define packet_send2_wrapped ssh_packet_send2_wrapped 498 #define packet_send_debug ssh_packet_send_debug 499 #define packet_send_ignore ssh_packet_send_ignore 500 #define packet_set_alive_timeouts ssh_packet_set_alive_timeouts 501 #define packet_set_authenticated ssh_packet_set_authenticated 502 #define packet_set_connection ssh_packet_set_connection 503 #define packet_set_encryption_key ssh_packet_set_encryption_key 504 #define packet_set_interactive ssh_packet_set_interactive 505 #define packet_set_iv ssh_packet_set_iv 506 #define packet_set_keycontext ssh_packet_set_keycontext 507 #define packet_set_maxsize ssh_packet_set_maxsize 508 #define packet_set_nonblocking ssh_packet_set_nonblocking 509 #define packet_set_postauth ssh_packet_set_postauth 510 #define packet_set_protocol_flags ssh_packet_set_protocol_flags 511 #define packet_set_rekey_limits ssh_packet_set_rekey_limits 512 #define packet_set_server ssh_packet_set_server 513 #define packet_set_state ssh_packet_set_state 514 #define packet_set_timeout ssh_packet_set_timeout 515 #define packet_start ssh_packet_start 516 #define packet_start_compression ssh_packet_start_compression 517 #define packet_start_discard ssh_packet_start_discard 518 #define packet_stop_discard ssh_packet_stop_discard 519 #define packet_write_poll ssh_packet_write_poll 520 #define packet_write_wait ssh_packet_write_wait 521 #define parse_ipqos ssh_parse_ipqos 522 #define parse_prime ssh_parse_prime 523 #define percent_expand ssh_percent_expand 524 #define permanently_drop_suid ssh_permanently_drop_suid 525 #define permanently_set_uid ssh_permanently_set_uid 526 #define permitopen_port ssh_permitopen_port 527 #define pkcs11_add_provider ssh_pkcs11_add_provider 528 #define pkcs11_del_provider ssh_pkcs11_del_provider 529 #define pkcs11_fetch_keys_filter ssh_pkcs11_fetch_keys_filter 530 #define pkcs11_find ssh_pkcs11_find 531 #define pkcs11_init ssh_pkcs11_init 532 #define pkcs11_provider_finalize ssh_pkcs11_provider_finalize 533 #define pkcs11_provider_unref ssh_pkcs11_provider_unref 534 #define pkcs11_rsa_finish ssh_pkcs11_rsa_finish 535 #define pkcs11_rsa_private_decrypt ssh_pkcs11_rsa_private_decrypt 536 #define pkcs11_rsa_private_encrypt ssh_pkcs11_rsa_private_encrypt 537 #define pkcs11_terminate ssh_pkcs11_terminate 538 #define plain_key_blob ssh_plain_key_blob 539 #define poly1305_auth ssh_poly1305_auth 540 #define poly64 ssh_poly64 541 #define poly_hash ssh_poly_hash 542 #define port_open_helper ssh_port_open_helper 543 #define prime_test ssh_prime_test 544 #define proto_spec ssh_proto_spec 545 #define put_host_port ssh_put_host_port 546 #define put_u16 ssh_put_u16 547 #define put_u32 ssh_put_u32 548 #define put_u32_le ssh_put_u32_le 549 #define put_u64 ssh_put_u64 550 #define pwcopy ssh_pwcopy 551 #define qfileout ssh_qfileout 552 #define read_keyfile_line ssh_read_keyfile_line 553 #define read_mux ssh_read_mux 554 #define read_passphrase ssh_read_passphrase 555 #define reduce_add_sub ssh_reduce_add_sub 556 #define refresh_progress_meter ssh_refresh_progress_meter 557 #define replacearg ssh_replacearg 558 #define restore_uid ssh_restore_uid 559 #define revoke_blob ssh_revoke_blob 560 #define revoked_blob_tree_RB_REMOVE ssh_revoked_blob_tree_RB_REMOVE 561 #define revoked_certs_for_ca_key ssh_revoked_certs_for_ca_key 562 #define revoked_serial_tree_RB_REMOVE ssh_revoked_serial_tree_RB_REMOVE 563 #define rijndaelEncrypt ssh_rijndaelEncrypt 564 #define rijndaelKeySetupDec ssh_rijndaelKeySetupDec 565 #define rijndaelKeySetupEnc ssh_rijndaelKeySetupEnc 566 #define rijndael_decrypt ssh_rijndael_decrypt 567 #define rijndael_encrypt ssh_rijndael_encrypt 568 #define rijndael_set_key ssh_rijndael_set_key 569 #define rsa_generate_additional_parameters ssh_rsa_generate_additional_parameters 570 #define rsa_private_decrypt ssh_rsa_private_decrypt 571 #define rsa_public_encrypt ssh_rsa_public_encrypt 572 #define sanitise_stdfd ssh_sanitise_stdfd 573 #define scan_scaled ssh_scan_scaled 574 #define seed_rng ssh_seed_rng 575 #define set_log_handler ssh_set_log_handler 576 #define set_newkeys ssh_set_newkeys 577 #define set_nodelay ssh_set_nodelay 578 #define set_nonblock ssh_set_nonblock 579 #define shadow_pw ssh_shadow_pw 580 #define sieve_large ssh_sieve_large 581 #define sig_winch ssh_sig_winch 582 #define sigdie ssh_sigdie 583 #define sock_set_v6only ssh_sock_set_v6only 584 #define square ssh_square 585 #define ssh1_3des_cbc ssh_ssh1_3des_cbc 586 #define ssh1_3des_cleanup ssh_ssh1_3des_cleanup 587 #define ssh1_3des_init ssh_ssh1_3des_init 588 #define ssh1_3des_iv ssh_ssh1_3des_iv 589 #define sshbuf_alloc ssh_sshbuf_alloc 590 #define sshbuf_avail ssh_sshbuf_avail 591 #define sshbuf_b64tod ssh_sshbuf_b64tod 592 #define sshbuf_check_reserve ssh_sshbuf_check_reserve 593 #define sshbuf_consume ssh_sshbuf_consume 594 #define sshbuf_consume_end ssh_sshbuf_consume_end 595 #define sshbuf_dtob16 ssh_sshbuf_dtob16 596 #define sshbuf_dtob64 ssh_sshbuf_dtob64 597 #define sshbuf_dump ssh_sshbuf_dump 598 #define sshbuf_dump_data ssh_sshbuf_dump_data 599 #define sshbuf_free ssh_sshbuf_free 600 #define sshbuf_from ssh_sshbuf_from 601 #define sshbuf_fromb ssh_sshbuf_fromb 602 #define sshbuf_froms ssh_sshbuf_froms 603 #define sshbuf_get ssh_sshbuf_get 604 #define sshbuf_get_bignum1 ssh_sshbuf_get_bignum1 605 #define sshbuf_get_bignum2 ssh_sshbuf_get_bignum2 606 #define sshbuf_get_cstring ssh_sshbuf_get_cstring 607 #define sshbuf_get_ec ssh_sshbuf_get_ec 608 #define sshbuf_get_eckey ssh_sshbuf_get_eckey 609 #define sshbuf_get_string ssh_sshbuf_get_string 610 #define sshbuf_get_string_direct ssh_sshbuf_get_string_direct 611 #define sshbuf_get_stringb ssh_sshbuf_get_stringb 612 #define sshbuf_get_u16 ssh_sshbuf_get_u16 613 #define sshbuf_get_u32 ssh_sshbuf_get_u32 614 #define sshbuf_get_u64 ssh_sshbuf_get_u64 615 #define sshbuf_get_u8 ssh_sshbuf_get_u8 616 #define sshbuf_init ssh_sshbuf_init 617 #define sshbuf_len ssh_sshbuf_len 618 #define sshbuf_max_size ssh_sshbuf_max_size 619 #define sshbuf_mutable_ptr ssh_sshbuf_mutable_ptr 620 #define sshbuf_new ssh_sshbuf_new 621 #define sshbuf_parent ssh_sshbuf_parent 622 #define sshbuf_peek_string_direct ssh_sshbuf_peek_string_direct 623 #define sshbuf_ptr ssh_sshbuf_ptr 624 #define sshbuf_put ssh_sshbuf_put 625 #define sshbuf_put_bignum1 ssh_sshbuf_put_bignum1 626 #define sshbuf_put_bignum2 ssh_sshbuf_put_bignum2 627 #define sshbuf_put_bignum2_bytes ssh_sshbuf_put_bignum2_bytes 628 #define sshbuf_put_cstring ssh_sshbuf_put_cstring 629 #define sshbuf_put_ec ssh_sshbuf_put_ec 630 #define sshbuf_put_eckey ssh_sshbuf_put_eckey 631 #define sshbuf_put_string ssh_sshbuf_put_string 632 #define sshbuf_put_stringb ssh_sshbuf_put_stringb 633 #define sshbuf_put_u16 ssh_sshbuf_put_u16 634 #define sshbuf_put_u32 ssh_sshbuf_put_u32 635 #define sshbuf_put_u64 ssh_sshbuf_put_u64 636 #define sshbuf_put_u8 ssh_sshbuf_put_u8 637 #define sshbuf_putb ssh_sshbuf_putb 638 #define sshbuf_putf ssh_sshbuf_putf 639 #define sshbuf_putfv ssh_sshbuf_putfv 640 #define sshbuf_refcount ssh_sshbuf_refcount 641 #define sshbuf_reserve ssh_sshbuf_reserve 642 #define sshbuf_reset ssh_sshbuf_reset 643 #define sshbuf_set_max_size ssh_sshbuf_set_max_size 644 #define sshbuf_set_parent ssh_sshbuf_set_parent 645 #define sshkey_add_private ssh_sshkey_add_private 646 #define sshkey_cert_check_authority ssh_sshkey_cert_check_authority 647 #define sshkey_cert_copy ssh_sshkey_cert_copy 648 #define sshkey_cert_is_legacy ssh_sshkey_cert_is_legacy 649 #define sshkey_cert_type ssh_sshkey_cert_type 650 #define sshkey_certify ssh_sshkey_certify 651 #define sshkey_curve_name_to_nid ssh_sshkey_curve_name_to_nid 652 #define sshkey_curve_nid_to_bits ssh_sshkey_curve_nid_to_bits 653 #define sshkey_curve_nid_to_name ssh_sshkey_curve_nid_to_name 654 #define sshkey_demote ssh_sshkey_demote 655 #define sshkey_drop_cert ssh_sshkey_drop_cert 656 #define sshkey_dump_ec_key ssh_sshkey_dump_ec_key 657 #define sshkey_dump_ec_point ssh_sshkey_dump_ec_point 658 #define sshkey_ec_nid_to_hash_alg ssh_sshkey_ec_nid_to_hash_alg 659 #define sshkey_ec_validate_private ssh_sshkey_ec_validate_private 660 #define sshkey_ec_validate_public ssh_sshkey_ec_validate_public 661 #define sshkey_ecdsa_bits_to_nid ssh_sshkey_ecdsa_bits_to_nid 662 #define sshkey_ecdsa_key_to_nid ssh_sshkey_ecdsa_key_to_nid 663 #define sshkey_ecdsa_nid_from_name ssh_sshkey_ecdsa_nid_from_name 664 #define sshkey_equal ssh_sshkey_equal 665 #define sshkey_equal_public ssh_sshkey_equal_public 666 #define sshkey_fingerprint ssh_sshkey_fingerprint 667 #define sshkey_fingerprint_raw ssh_sshkey_fingerprint_raw 668 #define sshkey_free ssh_sshkey_free 669 #define sshkey_from_blob ssh_sshkey_from_blob 670 #define sshkey_from_blob_internal ssh_sshkey_from_blob_internal 671 #define sshkey_from_private ssh_sshkey_from_private 672 #define sshkey_generate ssh_sshkey_generate 673 #define sshkey_in_file ssh_sshkey_in_file 674 #define sshkey_is_cert ssh_sshkey_is_cert 675 #define sshkey_load_cert ssh_sshkey_load_cert 676 #define sshkey_load_file ssh_sshkey_load_file 677 #define sshkey_load_private ssh_sshkey_load_private 678 #define sshkey_load_private_cert ssh_sshkey_load_private_cert 679 #define sshkey_load_private_pem ssh_sshkey_load_private_pem 680 #define sshkey_load_private_type ssh_sshkey_load_private_type 681 #define sshkey_load_public ssh_sshkey_load_public 682 #define sshkey_names_valid2 ssh_sshkey_names_valid2 683 #define sshkey_new ssh_sshkey_new 684 #define sshkey_new_private ssh_sshkey_new_private 685 #define sshkey_parse_private2 ssh_sshkey_parse_private2 686 #define sshkey_parse_private_fileblob ssh_sshkey_parse_private_fileblob 687 #define sshkey_parse_private_fileblob_type ssh_sshkey_parse_private_fileblob_type 688 #define sshkey_parse_private_pem_fileblob ssh_sshkey_parse_private_pem_fileblob 689 #define sshkey_parse_public_rsa1_fileblob ssh_sshkey_parse_public_rsa1_fileblob 690 #define sshkey_perm_ok ssh_sshkey_perm_ok 691 #define sshkey_plain_to_blob ssh_sshkey_plain_to_blob 692 #define sshkey_plain_to_blob_buf ssh_sshkey_plain_to_blob_buf 693 #define sshkey_private_deserialize ssh_sshkey_private_deserialize 694 #define sshkey_private_serialize ssh_sshkey_private_serialize 695 #define sshkey_private_to_blob2 ssh_sshkey_private_to_blob2 696 #define sshkey_private_to_fileblob ssh_sshkey_private_to_fileblob 697 #define sshkey_read ssh_sshkey_read 698 #define sshkey_save_private ssh_sshkey_save_private 699 #define sshkey_sign ssh_sshkey_sign 700 #define sshkey_size ssh_sshkey_size 701 #define sshkey_ssh_name ssh_sshkey_ssh_name 702 #define sshkey_ssh_name_plain ssh_sshkey_ssh_name_plain 703 #define sshkey_to_blob ssh_sshkey_to_blob 704 #define sshkey_to_blob_buf ssh_sshkey_to_blob_buf 705 #define sshkey_to_certified ssh_sshkey_to_certified 706 #define sshkey_try_load_public ssh_sshkey_try_load_public 707 #define sshkey_type ssh_sshkey_type 708 #define sshkey_type_from_name ssh_sshkey_type_from_name 709 #define sshkey_type_is_cert ssh_sshkey_type_is_cert 710 #define sshkey_type_plain ssh_sshkey_type_plain 711 #define sshkey_verify ssh_sshkey_verify 712 #define sshkey_write ssh_sshkey_write 713 #define start_progress_meter ssh_start_progress_meter 714 #define stop_progress_meter ssh_stop_progress_meter 715 #define strdelim ssh_strdelim 716 #define strnvis ssh_strnvis 717 #define strvis ssh_strvis 718 #define strvisx ssh_strvisx 719 #define sys_tun_open ssh_sys_tun_open 720 #define temporarily_use_uid ssh_temporarily_use_uid 721 #define tilde_expand_filename ssh_tilde_expand_filename 722 #define timingsafe_bcmp ssh_timingsafe_bcmp 723 #define to_blob ssh_to_blob 724 #define to_blob_buf ssh_to_blob_buf 725 #define tohex ssh_tohex 726 #define tty_make_modes ssh_tty_make_modes 727 #define tty_parse_modes ssh_tty_parse_modes 728 #define tun_open ssh_tun_open 729 #define umac128_delete ssh_umac128_delete 730 #define umac128_final ssh_umac128_final 731 #define umac128_new ssh_umac128_new 732 #define umac128_update ssh_umac128_update 733 #define umac_delete ssh_umac_delete 734 #define umac_final ssh_umac_final 735 #define umac_new ssh_umac_new 736 #define umac_update ssh_umac_update 737 #define unix_listener ssh_unix_listener 738 #define unset_nonblock ssh_unset_nonblock 739 #define update_progress_meter ssh_update_progress_meter 740 #define uudecode ssh_uudecode 741 #define uuencode ssh_uuencode 742 #define verbose ssh_verbose 743 #define verify_host_key_dns ssh_verify_host_key_dns 744 #define vis ssh_vis 745 #define x11_connect_display ssh_x11_connect_display 746 #define x11_create_display_inet ssh_x11_create_display_inet 747 #define x11_input_open ssh_x11_input_open 748 #define x11_open_helper ssh_x11_open_helper 749 #define x11_request_forwarding_with_spoofing ssh_x11_request_forwarding_with_spoofing 750 #define xasprintf ssh_xasprintf 751 #define xcalloc ssh_xcalloc 752 #define xcrypt ssh_xcrypt 753 #define xmalloc ssh_xmalloc 754 #define xmmap ssh_xmmap 755 #define xrealloc ssh_xrealloc 756 #define xstrdup ssh_xstrdup 757