10afa8e06SEd Maste{ 20afa8e06SEd Maste global: 30afa8e06SEd Maste eddsa_pk_free; 40afa8e06SEd Maste eddsa_pk_from_EVP_PKEY; 50afa8e06SEd Maste eddsa_pk_from_ptr; 60afa8e06SEd Maste eddsa_pk_new; 70afa8e06SEd Maste eddsa_pk_to_EVP_PKEY; 80afa8e06SEd Maste es256_pk_free; 90afa8e06SEd Maste es256_pk_from_EC_KEY; 10f540a430SEd Maste es256_pk_from_EVP_PKEY; 110afa8e06SEd Maste es256_pk_from_ptr; 120afa8e06SEd Maste es256_pk_new; 130afa8e06SEd Maste es256_pk_to_EVP_PKEY; 14*2ccfa855SEd Maste es384_pk_free; 15*2ccfa855SEd Maste es384_pk_from_EC_KEY; 16*2ccfa855SEd Maste es384_pk_from_EVP_PKEY; 17*2ccfa855SEd Maste es384_pk_from_ptr; 18*2ccfa855SEd Maste es384_pk_new; 19*2ccfa855SEd Maste es384_pk_to_EVP_PKEY; 200afa8e06SEd Maste fido_assert_allow_cred; 210afa8e06SEd Maste fido_assert_authdata_len; 220afa8e06SEd Maste fido_assert_authdata_ptr; 230afa8e06SEd Maste fido_assert_blob_len; 240afa8e06SEd Maste fido_assert_blob_ptr; 250afa8e06SEd Maste fido_assert_clientdata_hash_len; 260afa8e06SEd Maste fido_assert_clientdata_hash_ptr; 270afa8e06SEd Maste fido_assert_count; 28*2ccfa855SEd Maste fido_assert_empty_allow_list; 290afa8e06SEd Maste fido_assert_flags; 300afa8e06SEd Maste fido_assert_free; 310afa8e06SEd Maste fido_assert_hmac_secret_len; 320afa8e06SEd Maste fido_assert_hmac_secret_ptr; 330afa8e06SEd Maste fido_assert_id_len; 340afa8e06SEd Maste fido_assert_id_ptr; 350afa8e06SEd Maste fido_assert_largeblob_key_len; 360afa8e06SEd Maste fido_assert_largeblob_key_ptr; 370afa8e06SEd Maste fido_assert_new; 380afa8e06SEd Maste fido_assert_rp_id; 390afa8e06SEd Maste fido_assert_set_authdata; 400afa8e06SEd Maste fido_assert_set_authdata_raw; 410afa8e06SEd Maste fido_assert_set_clientdata; 420afa8e06SEd Maste fido_assert_set_clientdata_hash; 430afa8e06SEd Maste fido_assert_set_count; 440afa8e06SEd Maste fido_assert_set_extensions; 450afa8e06SEd Maste fido_assert_set_hmac_salt; 460afa8e06SEd Maste fido_assert_set_hmac_secret; 470afa8e06SEd Maste fido_assert_set_options; 480afa8e06SEd Maste fido_assert_set_rp; 490afa8e06SEd Maste fido_assert_set_sig; 500afa8e06SEd Maste fido_assert_set_up; 510afa8e06SEd Maste fido_assert_set_uv; 520afa8e06SEd Maste fido_assert_sigcount; 530afa8e06SEd Maste fido_assert_sig_len; 540afa8e06SEd Maste fido_assert_sig_ptr; 550afa8e06SEd Maste fido_assert_user_display_name; 560afa8e06SEd Maste fido_assert_user_icon; 570afa8e06SEd Maste fido_assert_user_id_len; 580afa8e06SEd Maste fido_assert_user_id_ptr; 590afa8e06SEd Maste fido_assert_user_name; 600afa8e06SEd Maste fido_assert_verify; 610afa8e06SEd Maste fido_bio_dev_enroll_begin; 620afa8e06SEd Maste fido_bio_dev_enroll_cancel; 630afa8e06SEd Maste fido_bio_dev_enroll_continue; 640afa8e06SEd Maste fido_bio_dev_enroll_remove; 650afa8e06SEd Maste fido_bio_dev_get_info; 660afa8e06SEd Maste fido_bio_dev_get_template_array; 670afa8e06SEd Maste fido_bio_dev_set_template_name; 680afa8e06SEd Maste fido_bio_enroll_free; 690afa8e06SEd Maste fido_bio_enroll_last_status; 700afa8e06SEd Maste fido_bio_enroll_new; 710afa8e06SEd Maste fido_bio_enroll_remaining_samples; 720afa8e06SEd Maste fido_bio_info_free; 730afa8e06SEd Maste fido_bio_info_max_samples; 740afa8e06SEd Maste fido_bio_info_new; 750afa8e06SEd Maste fido_bio_info_type; 760afa8e06SEd Maste fido_bio_template; 770afa8e06SEd Maste fido_bio_template_array_count; 780afa8e06SEd Maste fido_bio_template_array_free; 790afa8e06SEd Maste fido_bio_template_array_new; 800afa8e06SEd Maste fido_bio_template_free; 810afa8e06SEd Maste fido_bio_template_id_len; 820afa8e06SEd Maste fido_bio_template_id_ptr; 830afa8e06SEd Maste fido_bio_template_name; 840afa8e06SEd Maste fido_bio_template_new; 850afa8e06SEd Maste fido_bio_template_set_id; 860afa8e06SEd Maste fido_bio_template_set_name; 870afa8e06SEd Maste fido_cbor_info_aaguid_len; 880afa8e06SEd Maste fido_cbor_info_aaguid_ptr; 890afa8e06SEd Maste fido_cbor_info_algorithm_cose; 900afa8e06SEd Maste fido_cbor_info_algorithm_count; 910afa8e06SEd Maste fido_cbor_info_algorithm_type; 92*2ccfa855SEd Maste fido_cbor_info_certs_len; 93*2ccfa855SEd Maste fido_cbor_info_certs_name_ptr; 94*2ccfa855SEd Maste fido_cbor_info_certs_value_ptr; 950afa8e06SEd Maste fido_cbor_info_extensions_len; 960afa8e06SEd Maste fido_cbor_info_extensions_ptr; 970afa8e06SEd Maste fido_cbor_info_free; 98*2ccfa855SEd Maste fido_cbor_info_fwversion; 990afa8e06SEd Maste fido_cbor_info_maxcredbloblen; 1000afa8e06SEd Maste fido_cbor_info_maxcredcntlst; 1010afa8e06SEd Maste fido_cbor_info_maxcredidlen; 102*2ccfa855SEd Maste fido_cbor_info_maxlargeblob; 103*2ccfa855SEd Maste fido_cbor_info_maxmsgsiz; 104*2ccfa855SEd Maste fido_cbor_info_maxrpid_minpinlen; 105*2ccfa855SEd Maste fido_cbor_info_minpinlen; 1060afa8e06SEd Maste fido_cbor_info_new; 107*2ccfa855SEd Maste fido_cbor_info_new_pin_required; 1080afa8e06SEd Maste fido_cbor_info_options_len; 1090afa8e06SEd Maste fido_cbor_info_options_name_ptr; 1100afa8e06SEd Maste fido_cbor_info_options_value_ptr; 1110afa8e06SEd Maste fido_cbor_info_protocols_len; 1120afa8e06SEd Maste fido_cbor_info_protocols_ptr; 113*2ccfa855SEd Maste fido_cbor_info_rk_remaining; 1140afa8e06SEd Maste fido_cbor_info_transports_len; 1150afa8e06SEd Maste fido_cbor_info_transports_ptr; 116*2ccfa855SEd Maste fido_cbor_info_uv_attempts; 117*2ccfa855SEd Maste fido_cbor_info_uv_modality; 1180afa8e06SEd Maste fido_cbor_info_versions_len; 1190afa8e06SEd Maste fido_cbor_info_versions_ptr; 120f540a430SEd Maste fido_cred_attstmt_len; 121f540a430SEd Maste fido_cred_attstmt_ptr; 1220afa8e06SEd Maste fido_cred_authdata_len; 1230afa8e06SEd Maste fido_cred_authdata_ptr; 1240afa8e06SEd Maste fido_cred_authdata_raw_len; 1250afa8e06SEd Maste fido_cred_authdata_raw_ptr; 1260afa8e06SEd Maste fido_cred_clientdata_hash_len; 1270afa8e06SEd Maste fido_cred_clientdata_hash_ptr; 1280afa8e06SEd Maste fido_cred_display_name; 129*2ccfa855SEd Maste fido_cred_empty_exclude_list; 1300afa8e06SEd Maste fido_cred_exclude; 1310afa8e06SEd Maste fido_cred_flags; 1320afa8e06SEd Maste fido_cred_largeblob_key_len; 1330afa8e06SEd Maste fido_cred_largeblob_key_ptr; 1340afa8e06SEd Maste fido_cred_sigcount; 1350afa8e06SEd Maste fido_cred_fmt; 1360afa8e06SEd Maste fido_cred_free; 1370afa8e06SEd Maste fido_cred_id_len; 1380afa8e06SEd Maste fido_cred_id_ptr; 1390afa8e06SEd Maste fido_cred_aaguid_len; 1400afa8e06SEd Maste fido_cred_aaguid_ptr; 1410afa8e06SEd Maste fido_credman_del_dev_rk; 1420afa8e06SEd Maste fido_credman_get_dev_metadata; 1430afa8e06SEd Maste fido_credman_get_dev_rk; 1440afa8e06SEd Maste fido_credman_get_dev_rp; 1450afa8e06SEd Maste fido_credman_metadata_free; 1460afa8e06SEd Maste fido_credman_metadata_new; 1470afa8e06SEd Maste fido_credman_rk; 1480afa8e06SEd Maste fido_credman_rk_count; 1490afa8e06SEd Maste fido_credman_rk_existing; 1500afa8e06SEd Maste fido_credman_rk_free; 1510afa8e06SEd Maste fido_credman_rk_new; 1520afa8e06SEd Maste fido_credman_rk_remaining; 1530afa8e06SEd Maste fido_credman_rp_count; 1540afa8e06SEd Maste fido_credman_rp_free; 1550afa8e06SEd Maste fido_credman_rp_id; 1560afa8e06SEd Maste fido_credman_rp_id_hash_len; 1570afa8e06SEd Maste fido_credman_rp_id_hash_ptr; 1580afa8e06SEd Maste fido_credman_rp_name; 1590afa8e06SEd Maste fido_credman_rp_new; 1600afa8e06SEd Maste fido_credman_set_dev_rk; 1610afa8e06SEd Maste fido_cred_new; 162f540a430SEd Maste fido_cred_pin_minlen; 1630afa8e06SEd Maste fido_cred_prot; 1640afa8e06SEd Maste fido_cred_pubkey_len; 1650afa8e06SEd Maste fido_cred_pubkey_ptr; 1660afa8e06SEd Maste fido_cred_rp_id; 1670afa8e06SEd Maste fido_cred_rp_name; 168f540a430SEd Maste fido_cred_set_attstmt; 1690afa8e06SEd Maste fido_cred_set_authdata; 1700afa8e06SEd Maste fido_cred_set_authdata_raw; 1710afa8e06SEd Maste fido_cred_set_blob; 1720afa8e06SEd Maste fido_cred_set_clientdata; 1730afa8e06SEd Maste fido_cred_set_clientdata_hash; 1740afa8e06SEd Maste fido_cred_set_extensions; 1750afa8e06SEd Maste fido_cred_set_fmt; 1760afa8e06SEd Maste fido_cred_set_id; 1770afa8e06SEd Maste fido_cred_set_options; 178f540a430SEd Maste fido_cred_set_pin_minlen; 1790afa8e06SEd Maste fido_cred_set_prot; 1800afa8e06SEd Maste fido_cred_set_rk; 1810afa8e06SEd Maste fido_cred_set_rp; 1820afa8e06SEd Maste fido_cred_set_sig; 1830afa8e06SEd Maste fido_cred_set_type; 1840afa8e06SEd Maste fido_cred_set_user; 1850afa8e06SEd Maste fido_cred_set_uv; 1860afa8e06SEd Maste fido_cred_set_x509; 1870afa8e06SEd Maste fido_cred_sig_len; 1880afa8e06SEd Maste fido_cred_sig_ptr; 1890afa8e06SEd Maste fido_cred_type; 1900afa8e06SEd Maste fido_cred_user_id_len; 1910afa8e06SEd Maste fido_cred_user_id_ptr; 1920afa8e06SEd Maste fido_cred_user_name; 1930afa8e06SEd Maste fido_cred_verify; 1940afa8e06SEd Maste fido_cred_verify_self; 1950afa8e06SEd Maste fido_cred_x5c_len; 1960afa8e06SEd Maste fido_cred_x5c_ptr; 1970afa8e06SEd Maste fido_dev_build; 1980afa8e06SEd Maste fido_dev_cancel; 1990afa8e06SEd Maste fido_dev_close; 2000afa8e06SEd Maste fido_dev_enable_entattest; 2010afa8e06SEd Maste fido_dev_flags; 2020afa8e06SEd Maste fido_dev_force_fido2; 2030afa8e06SEd Maste fido_dev_force_pin_change; 2040afa8e06SEd Maste fido_dev_force_u2f; 2050afa8e06SEd Maste fido_dev_free; 2060afa8e06SEd Maste fido_dev_get_assert; 2070afa8e06SEd Maste fido_dev_get_cbor_info; 2080afa8e06SEd Maste fido_dev_get_retry_count; 2090afa8e06SEd Maste fido_dev_get_uv_retry_count; 2100afa8e06SEd Maste fido_dev_get_touch_begin; 2110afa8e06SEd Maste fido_dev_get_touch_status; 2120afa8e06SEd Maste fido_dev_has_pin; 2130afa8e06SEd Maste fido_dev_has_uv; 2140afa8e06SEd Maste fido_dev_info_free; 2150afa8e06SEd Maste fido_dev_info_manifest; 2160afa8e06SEd Maste fido_dev_info_manufacturer_string; 2170afa8e06SEd Maste fido_dev_info_new; 2180afa8e06SEd Maste fido_dev_info_path; 2190afa8e06SEd Maste fido_dev_info_product; 2200afa8e06SEd Maste fido_dev_info_product_string; 2210afa8e06SEd Maste fido_dev_info_ptr; 2223e696dfbSEd Maste fido_dev_info_set; 2230afa8e06SEd Maste fido_dev_info_vendor; 2243e696dfbSEd Maste fido_dev_io_handle; 2250afa8e06SEd Maste fido_dev_is_fido2; 2260afa8e06SEd Maste fido_dev_is_winhello; 2270afa8e06SEd Maste fido_dev_major; 2280afa8e06SEd Maste fido_dev_make_cred; 2290afa8e06SEd Maste fido_dev_minor; 2300afa8e06SEd Maste fido_dev_new; 2313e696dfbSEd Maste fido_dev_new_with_info; 2320afa8e06SEd Maste fido_dev_open; 2333e696dfbSEd Maste fido_dev_open_with_info; 2340afa8e06SEd Maste fido_dev_protocol; 2350afa8e06SEd Maste fido_dev_reset; 2360afa8e06SEd Maste fido_dev_set_io_functions; 2370afa8e06SEd Maste fido_dev_set_pin; 2380afa8e06SEd Maste fido_dev_set_pin_minlen; 239f540a430SEd Maste fido_dev_set_pin_minlen_rpid; 2400afa8e06SEd Maste fido_dev_set_sigmask; 241f540a430SEd Maste fido_dev_set_timeout; 2420afa8e06SEd Maste fido_dev_set_transport_functions; 2430afa8e06SEd Maste fido_dev_supports_cred_prot; 2440afa8e06SEd Maste fido_dev_supports_credman; 2450afa8e06SEd Maste fido_dev_supports_permissions; 2460afa8e06SEd Maste fido_dev_supports_pin; 2470afa8e06SEd Maste fido_dev_supports_uv; 2480afa8e06SEd Maste fido_dev_toggle_always_uv; 2490afa8e06SEd Maste fido_dev_largeblob_get; 2500afa8e06SEd Maste fido_dev_largeblob_get_array; 2510afa8e06SEd Maste fido_dev_largeblob_remove; 2520afa8e06SEd Maste fido_dev_largeblob_set; 2530afa8e06SEd Maste fido_dev_largeblob_set_array; 2540afa8e06SEd Maste fido_init; 2550afa8e06SEd Maste fido_set_log_handler; 2560afa8e06SEd Maste fido_strerr; 2570afa8e06SEd Maste rs256_pk_free; 2580afa8e06SEd Maste rs256_pk_from_ptr; 259f540a430SEd Maste rs256_pk_from_EVP_PKEY; 2600afa8e06SEd Maste rs256_pk_from_RSA; 2610afa8e06SEd Maste rs256_pk_new; 2620afa8e06SEd Maste rs256_pk_to_EVP_PKEY; 2630afa8e06SEd Maste local: 2640afa8e06SEd Maste *; 2650afa8e06SEd Maste}; 266