1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910
|
## Process this file with automake to produce Makefile.in
# Copyright (C) 2000-2012, 2019 Free Software Foundation, Inc.
#
# Author: Nikos Mavrogiannopoulos
#
# This file is part of GnuTLS.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this file; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
EXTRA_DIST = TODO certtool.cfg gnutls.html \
doxygen/Doxyfile.in doxygen/Doxyfile.orig texinfo.css \
gnutls-guile.html stamp_enums stamp_functions \
doc.mk COPYING COPYING.LESSER
IMAGES = \
gnutls-handshake-state.png \
gnutls-layers.png gnutls-modauth.png \
gnutls-client-server-use-case.png \
gnutls-crypto-layers.png \
gnutls-handshake-sequence.png gnutls-internals.png \
gnutls-logo.png gnutls-x509.png \
pkcs11-vision.png
SUBDIRS = examples scripts credentials latex
if ENABLE_GTK_DOC
SUBDIRS += reference
endif
-include $(top_srcdir)/doc/doc.mk
invoke-gnutls-cli.texi: $(top_srcdir)/src/cli-args.def
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
mv -f $@.tmp $@
invoke-gnutls-cli-debug.texi: $(top_srcdir)/src/cli-debug-args.def invoke-gnutls-cli.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
mv -f $@.tmp $@
invoke-gnutls-serv.texi: $(top_srcdir)/src/serv-args.def invoke-gnutls-cli-debug.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
mv -f $@.tmp $@
invoke-certtool.texi: $(top_srcdir)/src/certtool-args.def invoke-gnutls-serv.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
rm -f $@ && \
$(SED) -e 's/@subheading/@subsubheading/g' \
-e 's/@section/@subsection/g' $@.tmp > $@ && \
rm -f $@.tmp
invoke-ocsptool.texi: $(top_srcdir)/src/ocsptool-args.def invoke-certtool.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
rm -f $@ && \
$(SED) -e 's/@subheading/@subsubheading/g' \
-e 's/@section/@subsection/g' $@.tmp > $@ && \
rm -f $@.tmp
invoke-danetool.texi: $(top_srcdir)/src/danetool-args.def invoke-ocsptool.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
rm -f $@ && \
$(SED) -e 's/@subheading/@subsubheading/g' \
-e 's/@section/@subsection/g' $@.tmp > $@ && \
rm -f $@.tmp
invoke-srptool.texi: $(top_srcdir)/src/srptool-args.def invoke-danetool.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
rm -f $@ && \
$(SED) -e 's/@subheading/@subsubheading/g' \
-e 's/@section/@subsubsection/g' $@.tmp > $@ && \
rm -f $@.tmp
invoke-psktool.texi: $(top_srcdir)/src/psktool-args.def invoke-srptool.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
rm -f $@ && \
$(SED) -e 's/@subheading/@subsubheading/g' \
-e 's/@section/@subsubsection/g' $@.tmp > $@ && \
rm -f $@.tmp
invoke-p11tool.texi: $(top_srcdir)/src/p11tool-args.def invoke-psktool.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
rm -f $@ && \
$(SED) \
-e 's/@subsection/@subsubheading/g' \
-e 's/@section/@subsection/g' $@.tmp > $@ && \
rm -f $@.tmp
invoke-tpmtool.texi: $(top_srcdir)/src/tpmtool-args.def invoke-p11tool.texi
PATH="$(top_builddir)/src/$(PATH_SEPARATOR)$${PATH}$(PATH_SEPARATOR)" $(AUTOGEN) -L$(top_builddir)/src -Tagtexi-cmd.tpl $<; \
if [ ! -e $@ ]; then \
cp $(srcdir)/$@ .; \
fi; \
$(srcdir)/scripts/cleanup-autogen.pl < $@ > $@.tmp && \
rm -f $@ && \
$(SED) \
-e 's/@subsection/@subsubheading/g' \
-e 's/@section/@subsection/g' $@.tmp > $@ && \
rm -f $@.tmp
info_TEXINFOS = gnutls.texi gnutls-guile.texi
gnutls_TEXINFOS = gnutls.texi fdl-1.3.texi \
cha-bib.texi cha-cert-auth.texi cha-cert-auth2.texi \
cha-ciphersuites.texi cha-copying.texi cha-functions.texi \
cha-gtls-app.texi cha-internals.texi cha-intro-tls.texi \
cha-library.texi cha-preface.texi cha-programs.texi \
sec-tls-app.texi cha-errors.texi cha-support.texi \
cha-shared-key.texi cha-gtls-examples.texi cha-upgrade.texi \
cha-tokens.texi cha-crypto.texi cha-auth.texi cha-config.texi
AUTOGENED_DOC = invoke-gnutls-cli.texi invoke-gnutls-cli-debug.texi \
invoke-gnutls-serv.texi invoke-certtool.texi invoke-srptool.texi \
invoke-ocsptool.texi invoke-psktool.texi invoke-p11tool.texi \
invoke-tpmtool.texi invoke-danetool.texi
gnutls_TEXINFOS += stamp_functions
# Examples.
gnutls_TEXINFOS += examples/ex-client-anon.c \
examples/ex-session-info.c examples/ex-verify.c \
examples/ex-cert-select.c examples/ex-client-resume.c \
examples/ex-client-srp.c examples/ex-client-x509.c \
examples/ex-serv-x509.c examples/ex-serv-anon.c \
examples/ex-serv-srp.c \
examples/ex-alert.c examples/ex-x509-info.c examples/ex-crq.c \
examples/ex-pkcs12.c examples/ex-client-dtls.c
# Images. Make sure there are eps + png + pdf of each, plus the source dia.
gnutls_TEXINFOS += gnutls-internals.dia gnutls-internals.eps \
gnutls-internals.png
gnutls_TEXINFOS += gnutls-layers.dia gnutls-layers.eps \
gnutls-layers.png
gnutls_TEXINFOS += gnutls-crypto-layers.dia gnutls-crypto-layers.eps \
gnutls-crypto-layers.png
gnutls_TEXINFOS += gnutls-x509.dia gnutls-x509.eps gnutls-x509.png
gnutls_TEXINFOS += gnutls-logo.eps gnutls-logo.png
gnutls_TEXINFOS += pkcs11-vision.dia pkcs11-vision.eps pkcs11-vision.png
# Images. Make sure there are eps + png + pdf of each, plus the source dia.
gnutls_TEXINFOS += gnutls-client-server-use-case.dia \
gnutls-client-server-use-case.eps \
gnutls-client-server-use-case.png
gnutls_TEXINFOS += gnutls-handshake-sequence.dia \
gnutls-handshake-sequence.eps gnutls-handshake-sequence.png
gnutls_TEXINFOS += gnutls-handshake-state.dia \
gnutls-handshake-state.eps gnutls-handshake-state.png
gnutls_TEXINFOS += gnutls-modauth.dia gnutls-modauth.eps \
gnutls-modauth.png
infoimagesdir = $(infodir)
infoimages_DATA = $(IMAGES)
html_DATA = $(IMAGES)
AM_MAKEINFOFLAGS = -I $(top_srcdir)/doc
TEXI2DVI = texi2dvi $(AM_MAKEINFOFLAGS)
AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS) \
--no-split --css-include=$(srcdir)/texinfo.css
MAINTAINERCLEANFILES =
# Generated texinfos.
API_FILES=gnutls-api.texi socket-api.texi x509-api.texi pkcs12-api.texi \
tpm-api.texi pkcs11-api.texi abstract-api.texi compat-api.texi \
dtls-api.texi crypto-api.texi ocsp-api.texi tpm-api.texi dane-api.texi \
pkcs7-api.texi
MAINTAINERCLEANFILES += stamp_enums stamp_functions functions enums
gnutls_TEXINFOS += $(API_FILES)
MAINTAINERCLEANFILES += $(API_FILES)
gnutls-api.texi: $(top_srcdir)/lib/includes/gnutls/gnutls.h.in
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
socket-api.texi: $(top_srcdir)/lib/includes/gnutls/socket.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
dane-api.texi: $(top_srcdir)/libdane/includes/gnutls/dane.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
x509-api.texi: $(top_srcdir)/lib/includes/gnutls/x509.h $(top_srcdir)/lib/includes/gnutls/x509-ext.h
echo "" > $@-tmp
cat $^ > $@-tmp2
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $@-tmp2 |sort |uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
rm -f $@-tmp2
mv -f $@-tmp $@
pkcs12-api.texi: $(top_srcdir)/lib/includes/gnutls/pkcs12.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_X509_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
pkcs11-api.texi: $(top_srcdir)/lib/includes/gnutls/pkcs11.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
pkcs7-api.texi: $(top_srcdir)/lib/includes/gnutls/pkcs7.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_X509_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
tpm-api.texi: $(top_srcdir)/lib/includes/gnutls/tpm.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
abstract-api.texi: $(top_srcdir)/lib/includes/gnutls/abstract.h $(top_srcdir)/lib/includes/gnutls/urls.h $(top_srcdir)/lib/includes/gnutls/system-keys.h
echo "" > $@-tmp
cat $^ >$@-headers-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $@-headers-tmp |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
rm -f $@-headers-tmp
mv -f $@-tmp $@
compat-api.texi: $(top_srcdir)/lib/includes/gnutls/compat.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
dtls-api.texi: $(top_srcdir)/lib/includes/gnutls/dtls.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
crypto-api.texi: $(top_srcdir)/lib/includes/gnutls/crypto.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
ocsp-api.texi: $(top_srcdir)/lib/includes/gnutls/ocsp.h
echo "" > $@-tmp
for i in `$(top_srcdir)/doc/scripts/getfuncs.pl < $< |sort|uniq`; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo \
-function $$i \
$(C_X509_SOURCE_FILES) >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
# Generated texinfos.
# for some reason it does not work when cross compiling
if !WINDOWS
gnutls_TEXINFOS += error_codes.texi algorithms.texi alerts.texi enums.texi
endif
DISTCLEANFILES = error_codes.texi algorithms.texi alerts.texi enums.texi
AM_CPPFLAGS = \
-I$(top_builddir)/lib/includes -I$(top_srcdir)/lib/includes \
-I$(top_builddir)/
EXTRA_PROGRAMS = errcodes printlist alert-printlist
errcodes_SOURCES = errcodes.c common.c common.h
errcodes_LDADD = ../lib/libgnutls.la ../gl/libgnu.la
printlist_SOURCES = printlist.c common.c common.h
printlist_LDADD = ../lib/libgnutls.la ../gl/libgnu.la
alert_printlist_SOURCES = alert-printlist.c common.c common.h
alert_printlist_LDADD = ../lib/libgnutls.la ../gl/libgnu.la
error_codes.texi: $(top_srcdir)/lib/errors.c $(srcdir)/errcodes.c
$(MAKE) $(builddir)/errcodes
$(builddir)/errcodes > $@-tmp
mv -f $@-tmp $@
algorithms.texi: $(top_srcdir)/lib/algorithms/ciphers.c $(srcdir)/printlist.c
$(MAKE) $(builddir)/printlist
$(builddir)/printlist > $@-tmp
mv -f $@-tmp $@
alerts.texi: $(top_srcdir)/lib/alert.c $(srcdir)/alert-printlist.c
$(MAKE) $(builddir)/alert-printlist
$(builddir)/alert-printlist > $@-tmp
mv -f $@-tmp $@
enums.texi: $(HEADER_FILES)
echo "" > $@-tmp
for i in $^; do \
echo $(ECHO_N) "Creating documentation for $$i... " && \
$(srcdir)/scripts/gdoc -texinfo $$i >> $@-tmp && \
echo "ok"; \
done
mv -f $@-tmp $@
gnutls_TEXINFOS += $(ENUMS) $(FUNCS) $(AUTOGENED_DOC)
DISTCLEANFILES += $(ENUMS) stamp_enums stamp_functions
stamp_functions: $(API_FILES)
-mkdir functions
-rm -f functions/*.short
for i in $^; do \
$(srcdir)/scripts/split-texi.pl functions < $$i; \
done
$(SED) -i 's/\@anchor{.*//g' functions/*
$(SED) -i 's/\@subheading.*//g' functions/*
cd functions && for i in *;do grep ^"@deftypefun" $$i | $(SED) 's/@deftypefun/@item/g;s/ {/ @var{/;s/ {/ @ref{/' > ../functions/$$i.short;done
echo $@ > $@
stamp_enums: enums.texi
-mkdir enums
$(srcdir)/scripts/split-texi.pl enums enum < $<
echo $@ > $@
$(ENUMS): stamp_enums
$(FUNCS): stamp_functions
compare-exported:
rm -f tmp-exp-$@ tmp-head-$@
for i in $(top_srcdir)/libdane/includes/gnutls/*.h $(top_srcdir)/lib/includes/gnutls/*.h $(top_builddir)/lib/includes/gnutls/*.h;do perl $(srcdir)/scripts/getfuncs.pl <$$i >>tmp-head-$@;done
sort -u tmp-head-$@ > tmp2-head-$@
mv tmp2-head-$@ tmp-head-$@
$(srcdir)/scripts/getfuncs-map.pl <$(top_srcdir)/lib/libgnutls.map >tmp-exp-$@
$(srcdir)/scripts/getfuncs-map.pl <$(top_srcdir)/libdane/libdane.map >>tmp-exp-$@
sort -u tmp-exp-$@ > tmp2-exp-$@
mv tmp2-exp-$@ tmp-exp-$@
@echo "******************************************************************************"
@echo "If the following step fails there is a symbol in headers that is not exported or vice-versa"
@echo "******************************************************************************"
diff -u tmp-exp-$@ tmp-head-$@
rm -f tmp-exp-$@ tmp-head-$@
compare-makefile: enums.texi
@echo "******************************************************************************"
@echo "If the following step fails use 'make files-update'"
@echo "******************************************************************************"
ENUMS=`grep '^@c ' $< | $(SED) 's/@c //g' | sort -d`; \
STR=""; \
for i in $$ENUMS; do \
STR="$$STR\nENUMS += enums/$$i"; \
done; \
grep -v -e '^ENUMS += ' $(srcdir)/Makefile.am | \
perl -p -e "s,^ENUMS =,ENUMS =$$STR," > tmp-$@; \
diff -u $(srcdir)/Makefile.am tmp-$@ >/dev/null
rm -f tmp-$@
FUNCS=`cat $(HEADER_FILES) | $(top_srcdir)/doc/scripts/getfuncs.pl|sort -d|uniq`; \
MANS=""; \
for i in $$FUNCS; do \
MANS="$$MANS\nFUNCS += functions/$$i\nFUNCS += functions/$$i.short"; \
done; \
grep -v -e '^FUNCS += ' $(srcdir)/Makefile.am > tmp-$@; \
echo "\"s,^FUNCS =,FUNCS =$$MANS,\" -i tmp-$@"|xargs $(SED)
@echo "******************************************************************************"
@echo "If the following step fails use 'make files-update'"
@echo "******************************************************************************"
diff -u $(srcdir)/Makefile.am tmp-$@ >/dev/null
rm -f tmp-$@
.PHONY: compare-makefile compare-exported
# Guile texinfos.
guile_texi = core.c.texi
BUILT_SOURCES = $(guile_texi)
MAINTAINERCLEANFILES += $(guile_texi)
EXTRA_DIST += $(guile_texi) extract-guile-c-doc.scm
guile_TEXINFOS = gnutls-guile.texi $(guile_texi)
if HAVE_GUILE
GUILE_FOR_BUILD = \
GUILE_AUTO_COMPILE=0 \
$(GUILE) -q -L $(top_srcdir)/guile/modules
SNARF_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) \
-I$(top_srcdir)/lib/includes -I$(top_builddir)/lib/includes \
-I$(top_srcdir)/extra/includes \
-I$(top_srcdir)/guile/src -I$(top_builddir)/guile/src \
$(GUILE_CFLAGS)
core.c.texi: $(top_srcdir)/guile/src/core.c
$(MAKE) -C ../guile/src built-sources && \
$(GUILE_FOR_BUILD) -l "$(srcdir)/extract-guile-c-doc.scm" \
-e '(apply main (cdr (command-line)))' \
-- "$^" "$(CPP)" "$(SNARF_CPPFLAGS) $(CPPFLAGS)" \
> "$@"
else !HAVE_GUILE
core.c.texi:
echo "(Guile not available, documentation not generated.)" > $@
endif !HAVE_GUILE
gnutls.xml: epub.texi
makeinfo --docbook $<
$(SED) -i 's/\&\#8226;//g' $@
gnutls.epub: gnutls.xml
dbtoepub $<
-epub-fix --delete-unmanifested gnutls.epub
ENUMS =
ENUMS += enums/dane_cert_type_t
ENUMS += enums/dane_cert_usage_t
ENUMS += enums/dane_match_type_t
ENUMS += enums/dane_query_status_t
ENUMS += enums/dane_state_flags_t
ENUMS += enums/dane_verify_flags_t
ENUMS += enums/dane_verify_status_t
ENUMS += enums/gnutls_abstract_export_flags_t
ENUMS += enums/gnutls_alert_description_t
ENUMS += enums/gnutls_alert_level_t
ENUMS += enums/gnutls_alpn_flags_t
ENUMS += enums/gnutls_certificate_flags
ENUMS += enums/gnutls_certificate_import_flags
ENUMS += enums/gnutls_certificate_print_formats_t
ENUMS += enums/gnutls_certificate_request_t
ENUMS += enums/gnutls_certificate_status_t
ENUMS += enums/gnutls_certificate_type_t
ENUMS += enums/gnutls_certificate_verification_profiles_t
ENUMS += enums/gnutls_certificate_verify_flags
ENUMS += enums/gnutls_channel_binding_t
ENUMS += enums/gnutls_cipher_algorithm_t
ENUMS += enums/gnutls_close_request_t
ENUMS += enums/gnutls_compression_method_t
ENUMS += enums/gnutls_credentials_type_t
ENUMS += enums/gnutls_ctype_target_t
ENUMS += enums/gnutls_digest_algorithm_t
ENUMS += enums/gnutls_ecc_curve_t
ENUMS += enums/gnutls_ext_flags_t
ENUMS += enums/gnutls_ext_parse_type_t
ENUMS += enums/gnutls_fips_mode_t
ENUMS += enums/gnutls_gost_paramset_t
ENUMS += enums/gnutls_group_t
ENUMS += enums/gnutls_handshake_description_t
ENUMS += enums/gnutls_init_flags_t
ENUMS += enums/gnutls_keygen_types_t
ENUMS += enums/gnutls_keyid_flags_t
ENUMS += enums/gnutls_kx_algorithm_t
ENUMS += enums/gnutls_mac_algorithm_t
ENUMS += enums/gnutls_ocsp_cert_status_t
ENUMS += enums/gnutls_ocsp_print_formats_t
ENUMS += enums/gnutls_ocsp_resp_status_t
ENUMS += enums/gnutls_ocsp_verify_reason_t
ENUMS += enums/gnutls_openpgp_crt_status_t
ENUMS += enums/gnutls_params_type_t
ENUMS += enums/gnutls_pin_flag_t
ENUMS += enums/gnutls_pk_algorithm_t
ENUMS += enums/gnutls_pkcs11_obj_flags
ENUMS += enums/gnutls_pkcs11_obj_info_t
ENUMS += enums/gnutls_pkcs11_obj_type_t
ENUMS += enums/gnutls_pkcs11_token_info_t
ENUMS += enums/gnutls_pkcs11_url_type_t
ENUMS += enums/gnutls_pkcs12_bag_type_t
ENUMS += enums/gnutls_pkcs7_sign_flags
ENUMS += enums/gnutls_pkcs_encrypt_flags_t
ENUMS += enums/gnutls_privkey_flags_t
ENUMS += enums/gnutls_privkey_type_t
ENUMS += enums/gnutls_protocol_t
ENUMS += enums/gnutls_psk_key_flags
ENUMS += enums/gnutls_pubkey_flags_t
ENUMS += enums/gnutls_record_encryption_level_t
ENUMS += enums/gnutls_rnd_level_t
ENUMS += enums/gnutls_sec_param_t
ENUMS += enums/gnutls_server_name_type_t
ENUMS += enums/gnutls_session_flags_t
ENUMS += enums/gnutls_sign_algorithm_t
ENUMS += enums/gnutls_srtp_profile_t
ENUMS += enums/gnutls_supplemental_data_format_type_t
ENUMS += enums/gnutls_tpmkey_fmt_t
ENUMS += enums/gnutls_vdata_types_t
ENUMS += enums/gnutls_x509_crl_reason_t
ENUMS += enums/gnutls_x509_crt_flags
ENUMS += enums/gnutls_x509_crt_fmt_t
ENUMS += enums/gnutls_x509_subject_alt_name_t
FUNCS =
FUNCS += functions/dane_cert_type_name
FUNCS += functions/dane_cert_type_name.short
FUNCS += functions/dane_cert_usage_name
FUNCS += functions/dane_cert_usage_name.short
FUNCS += functions/dane_match_type_name
FUNCS += functions/dane_match_type_name.short
FUNCS += functions/dane_query_data
FUNCS += functions/dane_query_data.short
FUNCS += functions/dane_query_deinit
FUNCS += functions/dane_query_deinit.short
FUNCS += functions/dane_query_entries
FUNCS += functions/dane_query_entries.short
FUNCS += functions/dane_query_status
FUNCS += functions/dane_query_status.short
FUNCS += functions/dane_query_tlsa
FUNCS += functions/dane_query_tlsa.short
FUNCS += functions/dane_query_to_raw_tlsa
FUNCS += functions/dane_query_to_raw_tlsa.short
FUNCS += functions/dane_raw_tlsa
FUNCS += functions/dane_raw_tlsa.short
FUNCS += functions/dane_state_deinit
FUNCS += functions/dane_state_deinit.short
FUNCS += functions/dane_state_init
FUNCS += functions/dane_state_init.short
FUNCS += functions/dane_state_set_dlv_file
FUNCS += functions/dane_state_set_dlv_file.short
FUNCS += functions/dane_strerror
FUNCS += functions/dane_strerror.short
FUNCS += functions/dane_verification_status_print
FUNCS += functions/dane_verification_status_print.short
FUNCS += functions/dane_verify_crt
FUNCS += functions/dane_verify_crt.short
FUNCS += functions/dane_verify_crt_raw
FUNCS += functions/dane_verify_crt_raw.short
FUNCS += functions/dane_verify_session_crt
FUNCS += functions/dane_verify_session_crt.short
FUNCS += functions/gnutls_aead_cipher_decrypt
FUNCS += functions/gnutls_aead_cipher_decrypt.short
FUNCS += functions/gnutls_aead_cipher_decryptv2
FUNCS += functions/gnutls_aead_cipher_decryptv2.short
FUNCS += functions/gnutls_aead_cipher_deinit
FUNCS += functions/gnutls_aead_cipher_deinit.short
FUNCS += functions/gnutls_aead_cipher_encrypt
FUNCS += functions/gnutls_aead_cipher_encrypt.short
FUNCS += functions/gnutls_aead_cipher_encryptv
FUNCS += functions/gnutls_aead_cipher_encryptv.short
FUNCS += functions/gnutls_aead_cipher_encryptv2
FUNCS += functions/gnutls_aead_cipher_encryptv2.short
FUNCS += functions/gnutls_aead_cipher_init
FUNCS += functions/gnutls_aead_cipher_init.short
FUNCS += functions/gnutls_alert_get
FUNCS += functions/gnutls_alert_get.short
FUNCS += functions/gnutls_alert_get_name
FUNCS += functions/gnutls_alert_get_name.short
FUNCS += functions/gnutls_alert_get_strname
FUNCS += functions/gnutls_alert_get_strname.short
FUNCS += functions/gnutls_alert_send
FUNCS += functions/gnutls_alert_send.short
FUNCS += functions/gnutls_alert_send_appropriate
FUNCS += functions/gnutls_alert_send_appropriate.short
FUNCS += functions/gnutls_alert_set_read_function
FUNCS += functions/gnutls_alert_set_read_function.short
FUNCS += functions/gnutls_alpn_get_selected_protocol
FUNCS += functions/gnutls_alpn_get_selected_protocol.short
FUNCS += functions/gnutls_alpn_set_protocols
FUNCS += functions/gnutls_alpn_set_protocols.short
FUNCS += functions/gnutls_anon_allocate_client_credentials
FUNCS += functions/gnutls_anon_allocate_client_credentials.short
FUNCS += functions/gnutls_anon_allocate_server_credentials
FUNCS += functions/gnutls_anon_allocate_server_credentials.short
FUNCS += functions/gnutls_anon_free_client_credentials
FUNCS += functions/gnutls_anon_free_client_credentials.short
FUNCS += functions/gnutls_anon_free_server_credentials
FUNCS += functions/gnutls_anon_free_server_credentials.short
FUNCS += functions/gnutls_anon_set_params_function
FUNCS += functions/gnutls_anon_set_params_function.short
FUNCS += functions/gnutls_anon_set_server_dh_params
FUNCS += functions/gnutls_anon_set_server_dh_params.short
FUNCS += functions/gnutls_anon_set_server_known_dh_params
FUNCS += functions/gnutls_anon_set_server_known_dh_params.short
FUNCS += functions/gnutls_anon_set_server_params_function
FUNCS += functions/gnutls_anon_set_server_params_function.short
FUNCS += functions/gnutls_anti_replay_deinit
FUNCS += functions/gnutls_anti_replay_deinit.short
FUNCS += functions/gnutls_anti_replay_enable
FUNCS += functions/gnutls_anti_replay_enable.short
FUNCS += functions/gnutls_anti_replay_init
FUNCS += functions/gnutls_anti_replay_init.short
FUNCS += functions/gnutls_anti_replay_set_add_function
FUNCS += functions/gnutls_anti_replay_set_add_function.short
FUNCS += functions/gnutls_anti_replay_set_ptr
FUNCS += functions/gnutls_anti_replay_set_ptr.short
FUNCS += functions/gnutls_anti_replay_set_window
FUNCS += functions/gnutls_anti_replay_set_window.short
FUNCS += functions/gnutls_auth_client_get_type
FUNCS += functions/gnutls_auth_client_get_type.short
FUNCS += functions/gnutls_auth_get_type
FUNCS += functions/gnutls_auth_get_type.short
FUNCS += functions/gnutls_auth_server_get_type
FUNCS += functions/gnutls_auth_server_get_type.short
FUNCS += functions/gnutls_base64_decode2
FUNCS += functions/gnutls_base64_decode2.short
FUNCS += functions/gnutls_base64_encode2
FUNCS += functions/gnutls_base64_encode2.short
FUNCS += functions/gnutls_buffer_append_data
FUNCS += functions/gnutls_buffer_append_data.short
FUNCS += functions/gnutls_bye
FUNCS += functions/gnutls_bye.short
FUNCS += functions/gnutls_certificate_activation_time_peers
FUNCS += functions/gnutls_certificate_activation_time_peers.short
FUNCS += functions/gnutls_certificate_allocate_credentials
FUNCS += functions/gnutls_certificate_allocate_credentials.short
FUNCS += functions/gnutls_certificate_client_get_request_status
FUNCS += functions/gnutls_certificate_client_get_request_status.short
FUNCS += functions/gnutls_certificate_expiration_time_peers
FUNCS += functions/gnutls_certificate_expiration_time_peers.short
FUNCS += functions/gnutls_certificate_free_ca_names
FUNCS += functions/gnutls_certificate_free_ca_names.short
FUNCS += functions/gnutls_certificate_free_cas
FUNCS += functions/gnutls_certificate_free_cas.short
FUNCS += functions/gnutls_certificate_free_credentials
FUNCS += functions/gnutls_certificate_free_credentials.short
FUNCS += functions/gnutls_certificate_free_crls
FUNCS += functions/gnutls_certificate_free_crls.short
FUNCS += functions/gnutls_certificate_free_keys
FUNCS += functions/gnutls_certificate_free_keys.short
FUNCS += functions/gnutls_certificate_get_crt_raw
FUNCS += functions/gnutls_certificate_get_crt_raw.short
FUNCS += functions/gnutls_certificate_get_issuer
FUNCS += functions/gnutls_certificate_get_issuer.short
FUNCS += functions/gnutls_certificate_get_ocsp_expiration
FUNCS += functions/gnutls_certificate_get_ocsp_expiration.short
FUNCS += functions/gnutls_certificate_get_ours
FUNCS += functions/gnutls_certificate_get_ours.short
FUNCS += functions/gnutls_certificate_get_peers
FUNCS += functions/gnutls_certificate_get_peers.short
FUNCS += functions/gnutls_certificate_get_peers_subkey_id
FUNCS += functions/gnutls_certificate_get_peers_subkey_id.short
FUNCS += functions/gnutls_certificate_get_trust_list
FUNCS += functions/gnutls_certificate_get_trust_list.short
FUNCS += functions/gnutls_certificate_get_verify_flags
FUNCS += functions/gnutls_certificate_get_verify_flags.short
FUNCS += functions/gnutls_certificate_get_x509_crt
FUNCS += functions/gnutls_certificate_get_x509_crt.short
FUNCS += functions/gnutls_certificate_get_x509_key
FUNCS += functions/gnutls_certificate_get_x509_key.short
FUNCS += functions/gnutls_certificate_send_x509_rdn_sequence
FUNCS += functions/gnutls_certificate_send_x509_rdn_sequence.short
FUNCS += functions/gnutls_certificate_server_set_request
FUNCS += functions/gnutls_certificate_server_set_request.short
FUNCS += functions/gnutls_certificate_set_dh_params
FUNCS += functions/gnutls_certificate_set_dh_params.short
FUNCS += functions/gnutls_certificate_set_flags
FUNCS += functions/gnutls_certificate_set_flags.short
FUNCS += functions/gnutls_certificate_set_key
FUNCS += functions/gnutls_certificate_set_key.short
FUNCS += functions/gnutls_certificate_set_known_dh_params
FUNCS += functions/gnutls_certificate_set_known_dh_params.short
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_file
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_file.short
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_file2
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_file2.short
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_function
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_function.short
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_function2
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_function2.short
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_mem
FUNCS += functions/gnutls_certificate_set_ocsp_status_request_mem.short
FUNCS += functions/gnutls_certificate_set_params_function
FUNCS += functions/gnutls_certificate_set_params_function.short
FUNCS += functions/gnutls_certificate_set_pin_function
FUNCS += functions/gnutls_certificate_set_pin_function.short
FUNCS += functions/gnutls_certificate_set_rawpk_key_file
FUNCS += functions/gnutls_certificate_set_rawpk_key_file.short
FUNCS += functions/gnutls_certificate_set_rawpk_key_mem
FUNCS += functions/gnutls_certificate_set_rawpk_key_mem.short
FUNCS += functions/gnutls_certificate_set_retrieve_function
FUNCS += functions/gnutls_certificate_set_retrieve_function.short
FUNCS += functions/gnutls_certificate_set_retrieve_function2
FUNCS += functions/gnutls_certificate_set_retrieve_function2.short
FUNCS += functions/gnutls_certificate_set_retrieve_function3
FUNCS += functions/gnutls_certificate_set_retrieve_function3.short
FUNCS += functions/gnutls_certificate_set_trust_list
FUNCS += functions/gnutls_certificate_set_trust_list.short
FUNCS += functions/gnutls_certificate_set_verify_flags
FUNCS += functions/gnutls_certificate_set_verify_flags.short
FUNCS += functions/gnutls_certificate_set_verify_function
FUNCS += functions/gnutls_certificate_set_verify_function.short
FUNCS += functions/gnutls_certificate_set_verify_limits
FUNCS += functions/gnutls_certificate_set_verify_limits.short
FUNCS += functions/gnutls_certificate_set_x509_crl
FUNCS += functions/gnutls_certificate_set_x509_crl.short
FUNCS += functions/gnutls_certificate_set_x509_crl_file
FUNCS += functions/gnutls_certificate_set_x509_crl_file.short
FUNCS += functions/gnutls_certificate_set_x509_crl_mem
FUNCS += functions/gnutls_certificate_set_x509_crl_mem.short
FUNCS += functions/gnutls_certificate_set_x509_key
FUNCS += functions/gnutls_certificate_set_x509_key.short
FUNCS += functions/gnutls_certificate_set_x509_key_file
FUNCS += functions/gnutls_certificate_set_x509_key_file.short
FUNCS += functions/gnutls_certificate_set_x509_key_file2
FUNCS += functions/gnutls_certificate_set_x509_key_file2.short
FUNCS += functions/gnutls_certificate_set_x509_key_mem
FUNCS += functions/gnutls_certificate_set_x509_key_mem.short
FUNCS += functions/gnutls_certificate_set_x509_key_mem2
FUNCS += functions/gnutls_certificate_set_x509_key_mem2.short
FUNCS += functions/gnutls_certificate_set_x509_simple_pkcs12_file
FUNCS += functions/gnutls_certificate_set_x509_simple_pkcs12_file.short
FUNCS += functions/gnutls_certificate_set_x509_simple_pkcs12_mem
FUNCS += functions/gnutls_certificate_set_x509_simple_pkcs12_mem.short
FUNCS += functions/gnutls_certificate_set_x509_system_trust
FUNCS += functions/gnutls_certificate_set_x509_system_trust.short
FUNCS += functions/gnutls_certificate_set_x509_trust
FUNCS += functions/gnutls_certificate_set_x509_trust.short
FUNCS += functions/gnutls_certificate_set_x509_trust_dir
FUNCS += functions/gnutls_certificate_set_x509_trust_dir.short
FUNCS += functions/gnutls_certificate_set_x509_trust_file
FUNCS += functions/gnutls_certificate_set_x509_trust_file.short
FUNCS += functions/gnutls_certificate_set_x509_trust_mem
FUNCS += functions/gnutls_certificate_set_x509_trust_mem.short
FUNCS += functions/gnutls_certificate_type_get
FUNCS += functions/gnutls_certificate_type_get.short
FUNCS += functions/gnutls_certificate_type_get2
FUNCS += functions/gnutls_certificate_type_get2.short
FUNCS += functions/gnutls_certificate_type_get_id
FUNCS += functions/gnutls_certificate_type_get_id.short
FUNCS += functions/gnutls_certificate_type_get_name
FUNCS += functions/gnutls_certificate_type_get_name.short
FUNCS += functions/gnutls_certificate_type_list
FUNCS += functions/gnutls_certificate_type_list.short
FUNCS += functions/gnutls_certificate_verification_profile_get_id
FUNCS += functions/gnutls_certificate_verification_profile_get_id.short
FUNCS += functions/gnutls_certificate_verification_profile_get_name
FUNCS += functions/gnutls_certificate_verification_profile_get_name.short
FUNCS += functions/gnutls_certificate_verification_status_print
FUNCS += functions/gnutls_certificate_verification_status_print.short
FUNCS += functions/gnutls_certificate_verify_peers
FUNCS += functions/gnutls_certificate_verify_peers.short
FUNCS += functions/gnutls_certificate_verify_peers2
FUNCS += functions/gnutls_certificate_verify_peers2.short
FUNCS += functions/gnutls_certificate_verify_peers3
FUNCS += functions/gnutls_certificate_verify_peers3.short
FUNCS += functions/gnutls_check_version
FUNCS += functions/gnutls_check_version.short
FUNCS += functions/gnutls_cipher_add_auth
FUNCS += functions/gnutls_cipher_add_auth.short
FUNCS += functions/gnutls_cipher_decrypt
FUNCS += functions/gnutls_cipher_decrypt.short
FUNCS += functions/gnutls_cipher_decrypt2
FUNCS += functions/gnutls_cipher_decrypt2.short
FUNCS += functions/gnutls_cipher_deinit
FUNCS += functions/gnutls_cipher_deinit.short
FUNCS += functions/gnutls_cipher_encrypt
FUNCS += functions/gnutls_cipher_encrypt.short
FUNCS += functions/gnutls_cipher_encrypt2
FUNCS += functions/gnutls_cipher_encrypt2.short
FUNCS += functions/gnutls_cipher_get
FUNCS += functions/gnutls_cipher_get.short
FUNCS += functions/gnutls_cipher_get_block_size
FUNCS += functions/gnutls_cipher_get_block_size.short
FUNCS += functions/gnutls_cipher_get_id
FUNCS += functions/gnutls_cipher_get_id.short
FUNCS += functions/gnutls_cipher_get_iv_size
FUNCS += functions/gnutls_cipher_get_iv_size.short
FUNCS += functions/gnutls_cipher_get_key_size
FUNCS += functions/gnutls_cipher_get_key_size.short
FUNCS += functions/gnutls_cipher_get_name
FUNCS += functions/gnutls_cipher_get_name.short
FUNCS += functions/gnutls_cipher_get_tag_size
FUNCS += functions/gnutls_cipher_get_tag_size.short
FUNCS += functions/gnutls_cipher_init
FUNCS += functions/gnutls_cipher_init.short
FUNCS += functions/gnutls_cipher_list
FUNCS += functions/gnutls_cipher_list.short
FUNCS += functions/gnutls_cipher_set_iv
FUNCS += functions/gnutls_cipher_set_iv.short
FUNCS += functions/gnutls_cipher_suite_get_name
FUNCS += functions/gnutls_cipher_suite_get_name.short
FUNCS += functions/gnutls_cipher_suite_info
FUNCS += functions/gnutls_cipher_suite_info.short
FUNCS += functions/gnutls_cipher_tag
FUNCS += functions/gnutls_cipher_tag.short
FUNCS += functions/gnutls_compression_get
FUNCS += functions/gnutls_compression_get.short
FUNCS += functions/gnutls_compression_get_id
FUNCS += functions/gnutls_compression_get_id.short
FUNCS += functions/gnutls_compression_get_name
FUNCS += functions/gnutls_compression_get_name.short
FUNCS += functions/gnutls_compression_list
FUNCS += functions/gnutls_compression_list.short
FUNCS += functions/gnutls_credentials_clear
FUNCS += functions/gnutls_credentials_clear.short
FUNCS += functions/gnutls_credentials_get
FUNCS += functions/gnutls_credentials_get.short
FUNCS += functions/gnutls_credentials_set
FUNCS += functions/gnutls_credentials_set.short
FUNCS += functions/gnutls_crypto_register_aead_cipher
FUNCS += functions/gnutls_crypto_register_aead_cipher.short
FUNCS += functions/gnutls_crypto_register_cipher
FUNCS += functions/gnutls_crypto_register_cipher.short
FUNCS += functions/gnutls_crypto_register_digest
FUNCS += functions/gnutls_crypto_register_digest.short
FUNCS += functions/gnutls_crypto_register_mac
FUNCS += functions/gnutls_crypto_register_mac.short
FUNCS += functions/gnutls_db_check_entry
FUNCS += functions/gnutls_db_check_entry.short
FUNCS += functions/gnutls_db_check_entry_expire_time
FUNCS += functions/gnutls_db_check_entry_expire_time.short
FUNCS += functions/gnutls_db_check_entry_time
FUNCS += functions/gnutls_db_check_entry_time.short
FUNCS += functions/gnutls_db_get_default_cache_expiration
FUNCS += functions/gnutls_db_get_default_cache_expiration.short
FUNCS += functions/gnutls_db_get_ptr
FUNCS += functions/gnutls_db_get_ptr.short
FUNCS += functions/gnutls_db_remove_session
FUNCS += functions/gnutls_db_remove_session.short
FUNCS += functions/gnutls_db_set_cache_expiration
FUNCS += functions/gnutls_db_set_cache_expiration.short
FUNCS += functions/gnutls_db_set_ptr
FUNCS += functions/gnutls_db_set_ptr.short
FUNCS += functions/gnutls_db_set_remove_function
FUNCS += functions/gnutls_db_set_remove_function.short
FUNCS += functions/gnutls_db_set_retrieve_function
FUNCS += functions/gnutls_db_set_retrieve_function.short
FUNCS += functions/gnutls_db_set_store_function
FUNCS += functions/gnutls_db_set_store_function.short
FUNCS += functions/gnutls_decode_ber_digest_info
FUNCS += functions/gnutls_decode_ber_digest_info.short
FUNCS += functions/gnutls_decode_gost_rs_value
FUNCS += functions/gnutls_decode_gost_rs_value.short
FUNCS += functions/gnutls_decode_rs_value
FUNCS += functions/gnutls_decode_rs_value.short
FUNCS += functions/gnutls_deinit
FUNCS += functions/gnutls_deinit.short
FUNCS += functions/gnutls_dh_get_group
FUNCS += functions/gnutls_dh_get_group.short
FUNCS += functions/gnutls_dh_get_peers_public_bits
FUNCS += functions/gnutls_dh_get_peers_public_bits.short
FUNCS += functions/gnutls_dh_get_prime_bits
FUNCS += functions/gnutls_dh_get_prime_bits.short
FUNCS += functions/gnutls_dh_get_pubkey
FUNCS += functions/gnutls_dh_get_pubkey.short
FUNCS += functions/gnutls_dh_get_secret_bits
FUNCS += functions/gnutls_dh_get_secret_bits.short
FUNCS += functions/gnutls_dh_params_cpy
FUNCS += functions/gnutls_dh_params_cpy.short
FUNCS += functions/gnutls_dh_params_deinit
FUNCS += functions/gnutls_dh_params_deinit.short
FUNCS += functions/gnutls_dh_params_export2_pkcs3
FUNCS += functions/gnutls_dh_params_export2_pkcs3.short
FUNCS += functions/gnutls_dh_params_export_pkcs3
FUNCS += functions/gnutls_dh_params_export_pkcs3.short
FUNCS += functions/gnutls_dh_params_export_raw
FUNCS += functions/gnutls_dh_params_export_raw.short
FUNCS += functions/gnutls_dh_params_generate2
FUNCS += functions/gnutls_dh_params_generate2.short
FUNCS += functions/gnutls_dh_params_import_dsa
FUNCS += functions/gnutls_dh_params_import_dsa.short
FUNCS += functions/gnutls_dh_params_import_pkcs3
FUNCS += functions/gnutls_dh_params_import_pkcs3.short
FUNCS += functions/gnutls_dh_params_import_raw
FUNCS += functions/gnutls_dh_params_import_raw.short
FUNCS += functions/gnutls_dh_params_import_raw2
FUNCS += functions/gnutls_dh_params_import_raw2.short
FUNCS += functions/gnutls_dh_params_import_raw3
FUNCS += functions/gnutls_dh_params_import_raw3.short
FUNCS += functions/gnutls_dh_params_init
FUNCS += functions/gnutls_dh_params_init.short
FUNCS += functions/gnutls_dh_set_prime_bits
FUNCS += functions/gnutls_dh_set_prime_bits.short
FUNCS += functions/gnutls_digest_get_id
FUNCS += functions/gnutls_digest_get_id.short
FUNCS += functions/gnutls_digest_get_name
FUNCS += functions/gnutls_digest_get_name.short
FUNCS += functions/gnutls_digest_get_oid
FUNCS += functions/gnutls_digest_get_oid.short
FUNCS += functions/gnutls_digest_list
FUNCS += functions/gnutls_digest_list.short
FUNCS += functions/gnutls_dtls_cookie_send
FUNCS += functions/gnutls_dtls_cookie_send.short
FUNCS += functions/gnutls_dtls_cookie_verify
FUNCS += functions/gnutls_dtls_cookie_verify.short
FUNCS += functions/gnutls_dtls_get_data_mtu
FUNCS += functions/gnutls_dtls_get_data_mtu.short
FUNCS += functions/gnutls_dtls_get_mtu
FUNCS += functions/gnutls_dtls_get_mtu.short
FUNCS += functions/gnutls_dtls_get_timeout
FUNCS += functions/gnutls_dtls_get_timeout.short
FUNCS += functions/gnutls_dtls_prestate_set
FUNCS += functions/gnutls_dtls_prestate_set.short
FUNCS += functions/gnutls_dtls_set_data_mtu
FUNCS += functions/gnutls_dtls_set_data_mtu.short
FUNCS += functions/gnutls_dtls_set_mtu
FUNCS += functions/gnutls_dtls_set_mtu.short
FUNCS += functions/gnutls_dtls_set_timeouts
FUNCS += functions/gnutls_dtls_set_timeouts.short
FUNCS += functions/gnutls_ecc_curve_get
FUNCS += functions/gnutls_ecc_curve_get.short
FUNCS += functions/gnutls_ecc_curve_get_id
FUNCS += functions/gnutls_ecc_curve_get_id.short
FUNCS += functions/gnutls_ecc_curve_get_name
FUNCS += functions/gnutls_ecc_curve_get_name.short
FUNCS += functions/gnutls_ecc_curve_get_oid
FUNCS += functions/gnutls_ecc_curve_get_oid.short
FUNCS += functions/gnutls_ecc_curve_get_pk
FUNCS += functions/gnutls_ecc_curve_get_pk.short
FUNCS += functions/gnutls_ecc_curve_get_size
FUNCS += functions/gnutls_ecc_curve_get_size.short
FUNCS += functions/gnutls_ecc_curve_list
FUNCS += functions/gnutls_ecc_curve_list.short
FUNCS += functions/gnutls_encode_ber_digest_info
FUNCS += functions/gnutls_encode_ber_digest_info.short
FUNCS += functions/gnutls_encode_gost_rs_value
FUNCS += functions/gnutls_encode_gost_rs_value.short
FUNCS += functions/gnutls_encode_rs_value
FUNCS += functions/gnutls_encode_rs_value.short
FUNCS += functions/gnutls_error_is_fatal
FUNCS += functions/gnutls_error_is_fatal.short
FUNCS += functions/gnutls_error_to_alert
FUNCS += functions/gnutls_error_to_alert.short
FUNCS += functions/gnutls_est_record_overhead_size
FUNCS += functions/gnutls_est_record_overhead_size.short
FUNCS += functions/gnutls_ext_get_current_msg
FUNCS += functions/gnutls_ext_get_current_msg.short
FUNCS += functions/gnutls_ext_get_data
FUNCS += functions/gnutls_ext_get_data.short
FUNCS += functions/gnutls_ext_get_name
FUNCS += functions/gnutls_ext_get_name.short
FUNCS += functions/gnutls_ext_get_name2
FUNCS += functions/gnutls_ext_get_name2.short
FUNCS += functions/gnutls_ext_raw_parse
FUNCS += functions/gnutls_ext_raw_parse.short
FUNCS += functions/gnutls_ext_register
FUNCS += functions/gnutls_ext_register.short
FUNCS += functions/gnutls_ext_set_data
FUNCS += functions/gnutls_ext_set_data.short
FUNCS += functions/gnutls_fingerprint
FUNCS += functions/gnutls_fingerprint.short
FUNCS += functions/gnutls_fips140_mode_enabled
FUNCS += functions/gnutls_fips140_mode_enabled.short
FUNCS += functions/gnutls_fips140_set_mode
FUNCS += functions/gnutls_fips140_set_mode.short
FUNCS += functions/gnutls_get_system_config_file
FUNCS += functions/gnutls_get_system_config_file.short
FUNCS += functions/gnutls_global_deinit
FUNCS += functions/gnutls_global_deinit.short
FUNCS += functions/gnutls_global_init
FUNCS += functions/gnutls_global_init.short
FUNCS += functions/gnutls_global_set_audit_log_function
FUNCS += functions/gnutls_global_set_audit_log_function.short
FUNCS += functions/gnutls_global_set_log_function
FUNCS += functions/gnutls_global_set_log_function.short
FUNCS += functions/gnutls_global_set_log_level
FUNCS += functions/gnutls_global_set_log_level.short
FUNCS += functions/gnutls_global_set_mem_functions
FUNCS += functions/gnutls_global_set_mem_functions.short
FUNCS += functions/gnutls_global_set_mutex
FUNCS += functions/gnutls_global_set_mutex.short
FUNCS += functions/gnutls_global_set_time_function
FUNCS += functions/gnutls_global_set_time_function.short
FUNCS += functions/gnutls_gost_paramset_get_name
FUNCS += functions/gnutls_gost_paramset_get_name.short
FUNCS += functions/gnutls_gost_paramset_get_oid
FUNCS += functions/gnutls_gost_paramset_get_oid.short
FUNCS += functions/gnutls_group_get
FUNCS += functions/gnutls_group_get.short
FUNCS += functions/gnutls_group_get_id
FUNCS += functions/gnutls_group_get_id.short
FUNCS += functions/gnutls_group_get_name
FUNCS += functions/gnutls_group_get_name.short
FUNCS += functions/gnutls_group_list
FUNCS += functions/gnutls_group_list.short
FUNCS += functions/gnutls_handshake
FUNCS += functions/gnutls_handshake.short
FUNCS += functions/gnutls_handshake_description_get_name
FUNCS += functions/gnutls_handshake_description_get_name.short
FUNCS += functions/gnutls_handshake_get_last_in
FUNCS += functions/gnutls_handshake_get_last_in.short
FUNCS += functions/gnutls_handshake_get_last_out
FUNCS += functions/gnutls_handshake_get_last_out.short
FUNCS += functions/gnutls_handshake_set_hook_function
FUNCS += functions/gnutls_handshake_set_hook_function.short
FUNCS += functions/gnutls_handshake_set_max_packet_length
FUNCS += functions/gnutls_handshake_set_max_packet_length.short
FUNCS += functions/gnutls_handshake_set_post_client_hello_function
FUNCS += functions/gnutls_handshake_set_post_client_hello_function.short
FUNCS += functions/gnutls_handshake_set_private_extensions
FUNCS += functions/gnutls_handshake_set_private_extensions.short
FUNCS += functions/gnutls_handshake_set_random
FUNCS += functions/gnutls_handshake_set_random.short
FUNCS += functions/gnutls_handshake_set_read_function
FUNCS += functions/gnutls_handshake_set_read_function.short
FUNCS += functions/gnutls_handshake_set_secret_function
FUNCS += functions/gnutls_handshake_set_secret_function.short
FUNCS += functions/gnutls_handshake_set_timeout
FUNCS += functions/gnutls_handshake_set_timeout.short
FUNCS += functions/gnutls_handshake_write
FUNCS += functions/gnutls_handshake_write.short
FUNCS += functions/gnutls_hash
FUNCS += functions/gnutls_hash.short
FUNCS += functions/gnutls_hash_copy
FUNCS += functions/gnutls_hash_copy.short
FUNCS += functions/gnutls_hash_deinit
FUNCS += functions/gnutls_hash_deinit.short
FUNCS += functions/gnutls_hash_fast
FUNCS += functions/gnutls_hash_fast.short
FUNCS += functions/gnutls_hash_get_len
FUNCS += functions/gnutls_hash_get_len.short
FUNCS += functions/gnutls_hash_init
FUNCS += functions/gnutls_hash_init.short
FUNCS += functions/gnutls_hash_output
FUNCS += functions/gnutls_hash_output.short
FUNCS += functions/gnutls_heartbeat_allowed
FUNCS += functions/gnutls_heartbeat_allowed.short
FUNCS += functions/gnutls_heartbeat_enable
FUNCS += functions/gnutls_heartbeat_enable.short
FUNCS += functions/gnutls_heartbeat_get_timeout
FUNCS += functions/gnutls_heartbeat_get_timeout.short
FUNCS += functions/gnutls_heartbeat_ping
FUNCS += functions/gnutls_heartbeat_ping.short
FUNCS += functions/gnutls_heartbeat_pong
FUNCS += functions/gnutls_heartbeat_pong.short
FUNCS += functions/gnutls_heartbeat_set_timeouts
FUNCS += functions/gnutls_heartbeat_set_timeouts.short
FUNCS += functions/gnutls_hex2bin
FUNCS += functions/gnutls_hex2bin.short
FUNCS += functions/gnutls_hex_decode
FUNCS += functions/gnutls_hex_decode.short
FUNCS += functions/gnutls_hex_decode2
FUNCS += functions/gnutls_hex_decode2.short
FUNCS += functions/gnutls_hex_encode
FUNCS += functions/gnutls_hex_encode.short
FUNCS += functions/gnutls_hex_encode2
FUNCS += functions/gnutls_hex_encode2.short
FUNCS += functions/gnutls_hkdf_expand
FUNCS += functions/gnutls_hkdf_expand.short
FUNCS += functions/gnutls_hkdf_extract
FUNCS += functions/gnutls_hkdf_extract.short
FUNCS += functions/gnutls_hmac
FUNCS += functions/gnutls_hmac.short
FUNCS += functions/gnutls_hmac_copy
FUNCS += functions/gnutls_hmac_copy.short
FUNCS += functions/gnutls_hmac_deinit
FUNCS += functions/gnutls_hmac_deinit.short
FUNCS += functions/gnutls_hmac_fast
FUNCS += functions/gnutls_hmac_fast.short
FUNCS += functions/gnutls_hmac_get_key_size
FUNCS += functions/gnutls_hmac_get_key_size.short
FUNCS += functions/gnutls_hmac_get_len
FUNCS += functions/gnutls_hmac_get_len.short
FUNCS += functions/gnutls_hmac_init
FUNCS += functions/gnutls_hmac_init.short
FUNCS += functions/gnutls_hmac_output
FUNCS += functions/gnutls_hmac_output.short
FUNCS += functions/gnutls_hmac_set_nonce
FUNCS += functions/gnutls_hmac_set_nonce.short
FUNCS += functions/gnutls_idna_map
FUNCS += functions/gnutls_idna_map.short
FUNCS += functions/gnutls_idna_reverse_map
FUNCS += functions/gnutls_idna_reverse_map.short
FUNCS += functions/gnutls_init
FUNCS += functions/gnutls_init.short
FUNCS += functions/gnutls_key_generate
FUNCS += functions/gnutls_key_generate.short
FUNCS += functions/gnutls_kx_get
FUNCS += functions/gnutls_kx_get.short
FUNCS += functions/gnutls_kx_get_id
FUNCS += functions/gnutls_kx_get_id.short
FUNCS += functions/gnutls_kx_get_name
FUNCS += functions/gnutls_kx_get_name.short
FUNCS += functions/gnutls_kx_list
FUNCS += functions/gnutls_kx_list.short
FUNCS += functions/gnutls_load_file
FUNCS += functions/gnutls_load_file.short
FUNCS += functions/gnutls_mac_get
FUNCS += functions/gnutls_mac_get.short
FUNCS += functions/gnutls_mac_get_id
FUNCS += functions/gnutls_mac_get_id.short
FUNCS += functions/gnutls_mac_get_key_size
FUNCS += functions/gnutls_mac_get_key_size.short
FUNCS += functions/gnutls_mac_get_name
FUNCS += functions/gnutls_mac_get_name.short
FUNCS += functions/gnutls_mac_get_nonce_size
FUNCS += functions/gnutls_mac_get_nonce_size.short
FUNCS += functions/gnutls_mac_list
FUNCS += functions/gnutls_mac_list.short
FUNCS += functions/gnutls_memcmp
FUNCS += functions/gnutls_memcmp.short
FUNCS += functions/gnutls_memset
FUNCS += functions/gnutls_memset.short
FUNCS += functions/gnutls_ocsp_req_add_cert
FUNCS += functions/gnutls_ocsp_req_add_cert.short
FUNCS += functions/gnutls_ocsp_req_add_cert_id
FUNCS += functions/gnutls_ocsp_req_add_cert_id.short
FUNCS += functions/gnutls_ocsp_req_deinit
FUNCS += functions/gnutls_ocsp_req_deinit.short
FUNCS += functions/gnutls_ocsp_req_export
FUNCS += functions/gnutls_ocsp_req_export.short
FUNCS += functions/gnutls_ocsp_req_get_cert_id
FUNCS += functions/gnutls_ocsp_req_get_cert_id.short
FUNCS += functions/gnutls_ocsp_req_get_extension
FUNCS += functions/gnutls_ocsp_req_get_extension.short
FUNCS += functions/gnutls_ocsp_req_get_nonce
FUNCS += functions/gnutls_ocsp_req_get_nonce.short
FUNCS += functions/gnutls_ocsp_req_get_version
FUNCS += functions/gnutls_ocsp_req_get_version.short
FUNCS += functions/gnutls_ocsp_req_import
FUNCS += functions/gnutls_ocsp_req_import.short
FUNCS += functions/gnutls_ocsp_req_init
FUNCS += functions/gnutls_ocsp_req_init.short
FUNCS += functions/gnutls_ocsp_req_print
FUNCS += functions/gnutls_ocsp_req_print.short
FUNCS += functions/gnutls_ocsp_req_randomize_nonce
FUNCS += functions/gnutls_ocsp_req_randomize_nonce.short
FUNCS += functions/gnutls_ocsp_req_set_extension
FUNCS += functions/gnutls_ocsp_req_set_extension.short
FUNCS += functions/gnutls_ocsp_req_set_nonce
FUNCS += functions/gnutls_ocsp_req_set_nonce.short
FUNCS += functions/gnutls_ocsp_resp_check_crt
FUNCS += functions/gnutls_ocsp_resp_check_crt.short
FUNCS += functions/gnutls_ocsp_resp_deinit
FUNCS += functions/gnutls_ocsp_resp_deinit.short
FUNCS += functions/gnutls_ocsp_resp_export
FUNCS += functions/gnutls_ocsp_resp_export.short
FUNCS += functions/gnutls_ocsp_resp_export2
FUNCS += functions/gnutls_ocsp_resp_export2.short
FUNCS += functions/gnutls_ocsp_resp_get_certs
FUNCS += functions/gnutls_ocsp_resp_get_certs.short
FUNCS += functions/gnutls_ocsp_resp_get_extension
FUNCS += functions/gnutls_ocsp_resp_get_extension.short
FUNCS += functions/gnutls_ocsp_resp_get_nonce
FUNCS += functions/gnutls_ocsp_resp_get_nonce.short
FUNCS += functions/gnutls_ocsp_resp_get_produced
FUNCS += functions/gnutls_ocsp_resp_get_produced.short
FUNCS += functions/gnutls_ocsp_resp_get_responder
FUNCS += functions/gnutls_ocsp_resp_get_responder.short
FUNCS += functions/gnutls_ocsp_resp_get_responder2
FUNCS += functions/gnutls_ocsp_resp_get_responder2.short
FUNCS += functions/gnutls_ocsp_resp_get_responder_raw_id
FUNCS += functions/gnutls_ocsp_resp_get_responder_raw_id.short
FUNCS += functions/gnutls_ocsp_resp_get_response
FUNCS += functions/gnutls_ocsp_resp_get_response.short
FUNCS += functions/gnutls_ocsp_resp_get_signature
FUNCS += functions/gnutls_ocsp_resp_get_signature.short
FUNCS += functions/gnutls_ocsp_resp_get_signature_algorithm
FUNCS += functions/gnutls_ocsp_resp_get_signature_algorithm.short
FUNCS += functions/gnutls_ocsp_resp_get_single
FUNCS += functions/gnutls_ocsp_resp_get_single.short
FUNCS += functions/gnutls_ocsp_resp_get_status
FUNCS += functions/gnutls_ocsp_resp_get_status.short
FUNCS += functions/gnutls_ocsp_resp_get_version
FUNCS += functions/gnutls_ocsp_resp_get_version.short
FUNCS += functions/gnutls_ocsp_resp_import
FUNCS += functions/gnutls_ocsp_resp_import.short
FUNCS += functions/gnutls_ocsp_resp_import2
FUNCS += functions/gnutls_ocsp_resp_import2.short
FUNCS += functions/gnutls_ocsp_resp_init
FUNCS += functions/gnutls_ocsp_resp_init.short
FUNCS += functions/gnutls_ocsp_resp_list_import2
FUNCS += functions/gnutls_ocsp_resp_list_import2.short
FUNCS += functions/gnutls_ocsp_resp_print
FUNCS += functions/gnutls_ocsp_resp_print.short
FUNCS += functions/gnutls_ocsp_resp_verify
FUNCS += functions/gnutls_ocsp_resp_verify.short
FUNCS += functions/gnutls_ocsp_resp_verify_direct
FUNCS += functions/gnutls_ocsp_resp_verify_direct.short
FUNCS += functions/gnutls_ocsp_status_request_enable_client
FUNCS += functions/gnutls_ocsp_status_request_enable_client.short
FUNCS += functions/gnutls_ocsp_status_request_get
FUNCS += functions/gnutls_ocsp_status_request_get.short
FUNCS += functions/gnutls_ocsp_status_request_get2
FUNCS += functions/gnutls_ocsp_status_request_get2.short
FUNCS += functions/gnutls_ocsp_status_request_is_checked
FUNCS += functions/gnutls_ocsp_status_request_is_checked.short
FUNCS += functions/gnutls_oid_to_digest
FUNCS += functions/gnutls_oid_to_digest.short
FUNCS += functions/gnutls_oid_to_ecc_curve
FUNCS += functions/gnutls_oid_to_ecc_curve.short
FUNCS += functions/gnutls_oid_to_gost_paramset
FUNCS += functions/gnutls_oid_to_gost_paramset.short
FUNCS += functions/gnutls_oid_to_mac
FUNCS += functions/gnutls_oid_to_mac.short
FUNCS += functions/gnutls_oid_to_pk
FUNCS += functions/gnutls_oid_to_pk.short
FUNCS += functions/gnutls_oid_to_sign
FUNCS += functions/gnutls_oid_to_sign.short
FUNCS += functions/gnutls_openpgp_privkey_sign_hash
FUNCS += functions/gnutls_openpgp_privkey_sign_hash.short
FUNCS += functions/gnutls_openpgp_send_cert
FUNCS += functions/gnutls_openpgp_send_cert.short
FUNCS += functions/gnutls_packet_deinit
FUNCS += functions/gnutls_packet_deinit.short
FUNCS += functions/gnutls_packet_get
FUNCS += functions/gnutls_packet_get.short
FUNCS += functions/gnutls_pbkdf2
FUNCS += functions/gnutls_pbkdf2.short
FUNCS += functions/gnutls_pcert_deinit
FUNCS += functions/gnutls_pcert_deinit.short
FUNCS += functions/gnutls_pcert_export_openpgp
FUNCS += functions/gnutls_pcert_export_openpgp.short
FUNCS += functions/gnutls_pcert_export_x509
FUNCS += functions/gnutls_pcert_export_x509.short
FUNCS += functions/gnutls_pcert_import_openpgp
FUNCS += functions/gnutls_pcert_import_openpgp.short
FUNCS += functions/gnutls_pcert_import_openpgp_raw
FUNCS += functions/gnutls_pcert_import_openpgp_raw.short
FUNCS += functions/gnutls_pcert_import_rawpk
FUNCS += functions/gnutls_pcert_import_rawpk.short
FUNCS += functions/gnutls_pcert_import_rawpk_raw
FUNCS += functions/gnutls_pcert_import_rawpk_raw.short
FUNCS += functions/gnutls_pcert_import_x509
FUNCS += functions/gnutls_pcert_import_x509.short
FUNCS += functions/gnutls_pcert_import_x509_list
FUNCS += functions/gnutls_pcert_import_x509_list.short
FUNCS += functions/gnutls_pcert_import_x509_raw
FUNCS += functions/gnutls_pcert_import_x509_raw.short
FUNCS += functions/gnutls_pcert_list_import_x509_file
FUNCS += functions/gnutls_pcert_list_import_x509_file.short
FUNCS += functions/gnutls_pcert_list_import_x509_raw
FUNCS += functions/gnutls_pcert_list_import_x509_raw.short
FUNCS += functions/gnutls_pem_base64_decode
FUNCS += functions/gnutls_pem_base64_decode.short
FUNCS += functions/gnutls_pem_base64_decode2
FUNCS += functions/gnutls_pem_base64_decode2.short
FUNCS += functions/gnutls_pem_base64_encode
FUNCS += functions/gnutls_pem_base64_encode.short
FUNCS += functions/gnutls_pem_base64_encode2
FUNCS += functions/gnutls_pem_base64_encode2.short
FUNCS += functions/gnutls_perror
FUNCS += functions/gnutls_perror.short
FUNCS += functions/gnutls_pk_algorithm_get_name
FUNCS += functions/gnutls_pk_algorithm_get_name.short
FUNCS += functions/gnutls_pk_bits_to_sec_param
FUNCS += functions/gnutls_pk_bits_to_sec_param.short
FUNCS += functions/gnutls_pkcs11_add_provider
FUNCS += functions/gnutls_pkcs11_add_provider.short
FUNCS += functions/gnutls_pkcs11_copy_attached_extension
FUNCS += functions/gnutls_pkcs11_copy_attached_extension.short
FUNCS += functions/gnutls_pkcs11_copy_pubkey
FUNCS += functions/gnutls_pkcs11_copy_pubkey.short
FUNCS += functions/gnutls_pkcs11_copy_secret_key
FUNCS += functions/gnutls_pkcs11_copy_secret_key.short
FUNCS += functions/gnutls_pkcs11_copy_x509_crt
FUNCS += functions/gnutls_pkcs11_copy_x509_crt.short
FUNCS += functions/gnutls_pkcs11_copy_x509_crt2
FUNCS += functions/gnutls_pkcs11_copy_x509_crt2.short
FUNCS += functions/gnutls_pkcs11_copy_x509_privkey
FUNCS += functions/gnutls_pkcs11_copy_x509_privkey.short
FUNCS += functions/gnutls_pkcs11_copy_x509_privkey2
FUNCS += functions/gnutls_pkcs11_copy_x509_privkey2.short
FUNCS += functions/gnutls_pkcs11_crt_is_known
FUNCS += functions/gnutls_pkcs11_crt_is_known.short
FUNCS += functions/gnutls_pkcs11_deinit
FUNCS += functions/gnutls_pkcs11_deinit.short
FUNCS += functions/gnutls_pkcs11_delete_url
FUNCS += functions/gnutls_pkcs11_delete_url.short
FUNCS += functions/gnutls_pkcs11_get_pin_function
FUNCS += functions/gnutls_pkcs11_get_pin_function.short
FUNCS += functions/gnutls_pkcs11_get_raw_issuer
FUNCS += functions/gnutls_pkcs11_get_raw_issuer.short
FUNCS += functions/gnutls_pkcs11_get_raw_issuer_by_dn
FUNCS += functions/gnutls_pkcs11_get_raw_issuer_by_dn.short
FUNCS += functions/gnutls_pkcs11_get_raw_issuer_by_subject_key_id
FUNCS += functions/gnutls_pkcs11_get_raw_issuer_by_subject_key_id.short
FUNCS += functions/gnutls_pkcs11_init
FUNCS += functions/gnutls_pkcs11_init.short
FUNCS += functions/gnutls_pkcs11_obj_deinit
FUNCS += functions/gnutls_pkcs11_obj_deinit.short
FUNCS += functions/gnutls_pkcs11_obj_export
FUNCS += functions/gnutls_pkcs11_obj_export.short
FUNCS += functions/gnutls_pkcs11_obj_export2
FUNCS += functions/gnutls_pkcs11_obj_export2.short
FUNCS += functions/gnutls_pkcs11_obj_export3
FUNCS += functions/gnutls_pkcs11_obj_export3.short
FUNCS += functions/gnutls_pkcs11_obj_export_url
FUNCS += functions/gnutls_pkcs11_obj_export_url.short
FUNCS += functions/gnutls_pkcs11_obj_flags_get_str
FUNCS += functions/gnutls_pkcs11_obj_flags_get_str.short
FUNCS += functions/gnutls_pkcs11_obj_get_exts
FUNCS += functions/gnutls_pkcs11_obj_get_exts.short
FUNCS += functions/gnutls_pkcs11_obj_get_flags
FUNCS += functions/gnutls_pkcs11_obj_get_flags.short
FUNCS += functions/gnutls_pkcs11_obj_get_info
FUNCS += functions/gnutls_pkcs11_obj_get_info.short
FUNCS += functions/gnutls_pkcs11_obj_get_ptr
FUNCS += functions/gnutls_pkcs11_obj_get_ptr.short
FUNCS += functions/gnutls_pkcs11_obj_get_type
FUNCS += functions/gnutls_pkcs11_obj_get_type.short
FUNCS += functions/gnutls_pkcs11_obj_import_url
FUNCS += functions/gnutls_pkcs11_obj_import_url.short
FUNCS += functions/gnutls_pkcs11_obj_init
FUNCS += functions/gnutls_pkcs11_obj_init.short
FUNCS += functions/gnutls_pkcs11_obj_list_import_url3
FUNCS += functions/gnutls_pkcs11_obj_list_import_url3.short
FUNCS += functions/gnutls_pkcs11_obj_list_import_url4
FUNCS += functions/gnutls_pkcs11_obj_list_import_url4.short
FUNCS += functions/gnutls_pkcs11_obj_set_info
FUNCS += functions/gnutls_pkcs11_obj_set_info.short
FUNCS += functions/gnutls_pkcs11_obj_set_pin_function
FUNCS += functions/gnutls_pkcs11_obj_set_pin_function.short
FUNCS += functions/gnutls_pkcs11_privkey_cpy
FUNCS += functions/gnutls_pkcs11_privkey_cpy.short
FUNCS += functions/gnutls_pkcs11_privkey_deinit
FUNCS += functions/gnutls_pkcs11_privkey_deinit.short
FUNCS += functions/gnutls_pkcs11_privkey_export_pubkey
FUNCS += functions/gnutls_pkcs11_privkey_export_pubkey.short
FUNCS += functions/gnutls_pkcs11_privkey_export_url
FUNCS += functions/gnutls_pkcs11_privkey_export_url.short
FUNCS += functions/gnutls_pkcs11_privkey_generate
FUNCS += functions/gnutls_pkcs11_privkey_generate.short
FUNCS += functions/gnutls_pkcs11_privkey_generate2
FUNCS += functions/gnutls_pkcs11_privkey_generate2.short
FUNCS += functions/gnutls_pkcs11_privkey_generate3
FUNCS += functions/gnutls_pkcs11_privkey_generate3.short
FUNCS += functions/gnutls_pkcs11_privkey_get_info
FUNCS += functions/gnutls_pkcs11_privkey_get_info.short
FUNCS += functions/gnutls_pkcs11_privkey_get_pk_algorithm
FUNCS += functions/gnutls_pkcs11_privkey_get_pk_algorithm.short
FUNCS += functions/gnutls_pkcs11_privkey_import_url
FUNCS += functions/gnutls_pkcs11_privkey_import_url.short
FUNCS += functions/gnutls_pkcs11_privkey_init
FUNCS += functions/gnutls_pkcs11_privkey_init.short
FUNCS += functions/gnutls_pkcs11_privkey_set_pin_function
FUNCS += functions/gnutls_pkcs11_privkey_set_pin_function.short
FUNCS += functions/gnutls_pkcs11_privkey_status
FUNCS += functions/gnutls_pkcs11_privkey_status.short
FUNCS += functions/gnutls_pkcs11_reinit
FUNCS += functions/gnutls_pkcs11_reinit.short
FUNCS += functions/gnutls_pkcs11_set_pin_function
FUNCS += functions/gnutls_pkcs11_set_pin_function.short
FUNCS += functions/gnutls_pkcs11_set_token_function
FUNCS += functions/gnutls_pkcs11_set_token_function.short
FUNCS += functions/gnutls_pkcs11_token_check_mechanism
FUNCS += functions/gnutls_pkcs11_token_check_mechanism.short
FUNCS += functions/gnutls_pkcs11_token_get_flags
FUNCS += functions/gnutls_pkcs11_token_get_flags.short
FUNCS += functions/gnutls_pkcs11_token_get_info
FUNCS += functions/gnutls_pkcs11_token_get_info.short
FUNCS += functions/gnutls_pkcs11_token_get_mechanism
FUNCS += functions/gnutls_pkcs11_token_get_mechanism.short
FUNCS += functions/gnutls_pkcs11_token_get_ptr
FUNCS += functions/gnutls_pkcs11_token_get_ptr.short
FUNCS += functions/gnutls_pkcs11_token_get_random
FUNCS += functions/gnutls_pkcs11_token_get_random.short
FUNCS += functions/gnutls_pkcs11_token_get_url
FUNCS += functions/gnutls_pkcs11_token_get_url.short
FUNCS += functions/gnutls_pkcs11_token_init
FUNCS += functions/gnutls_pkcs11_token_init.short
FUNCS += functions/gnutls_pkcs11_token_set_pin
FUNCS += functions/gnutls_pkcs11_token_set_pin.short
FUNCS += functions/gnutls_pkcs11_type_get_name
FUNCS += functions/gnutls_pkcs11_type_get_name.short
FUNCS += functions/gnutls_pkcs12_bag_decrypt
FUNCS += functions/gnutls_pkcs12_bag_decrypt.short
FUNCS += functions/gnutls_pkcs12_bag_deinit
FUNCS += functions/gnutls_pkcs12_bag_deinit.short
FUNCS += functions/gnutls_pkcs12_bag_enc_info
FUNCS += functions/gnutls_pkcs12_bag_enc_info.short
FUNCS += functions/gnutls_pkcs12_bag_encrypt
FUNCS += functions/gnutls_pkcs12_bag_encrypt.short
FUNCS += functions/gnutls_pkcs12_bag_get_count
FUNCS += functions/gnutls_pkcs12_bag_get_count.short
FUNCS += functions/gnutls_pkcs12_bag_get_data
FUNCS += functions/gnutls_pkcs12_bag_get_data.short
FUNCS += functions/gnutls_pkcs12_bag_get_friendly_name
FUNCS += functions/gnutls_pkcs12_bag_get_friendly_name.short
FUNCS += functions/gnutls_pkcs12_bag_get_key_id
FUNCS += functions/gnutls_pkcs12_bag_get_key_id.short
FUNCS += functions/gnutls_pkcs12_bag_get_type
FUNCS += functions/gnutls_pkcs12_bag_get_type.short
FUNCS += functions/gnutls_pkcs12_bag_init
FUNCS += functions/gnutls_pkcs12_bag_init.short
FUNCS += functions/gnutls_pkcs12_bag_set_crl
FUNCS += functions/gnutls_pkcs12_bag_set_crl.short
FUNCS += functions/gnutls_pkcs12_bag_set_crt
FUNCS += functions/gnutls_pkcs12_bag_set_crt.short
FUNCS += functions/gnutls_pkcs12_bag_set_data
FUNCS += functions/gnutls_pkcs12_bag_set_data.short
FUNCS += functions/gnutls_pkcs12_bag_set_friendly_name
FUNCS += functions/gnutls_pkcs12_bag_set_friendly_name.short
FUNCS += functions/gnutls_pkcs12_bag_set_key_id
FUNCS += functions/gnutls_pkcs12_bag_set_key_id.short
FUNCS += functions/gnutls_pkcs12_bag_set_privkey
FUNCS += functions/gnutls_pkcs12_bag_set_privkey.short
FUNCS += functions/gnutls_pkcs12_deinit
FUNCS += functions/gnutls_pkcs12_deinit.short
FUNCS += functions/gnutls_pkcs12_export
FUNCS += functions/gnutls_pkcs12_export.short
FUNCS += functions/gnutls_pkcs12_export2
FUNCS += functions/gnutls_pkcs12_export2.short
FUNCS += functions/gnutls_pkcs12_generate_mac
FUNCS += functions/gnutls_pkcs12_generate_mac.short
FUNCS += functions/gnutls_pkcs12_generate_mac2
FUNCS += functions/gnutls_pkcs12_generate_mac2.short
FUNCS += functions/gnutls_pkcs12_get_bag
FUNCS += functions/gnutls_pkcs12_get_bag.short
FUNCS += functions/gnutls_pkcs12_import
FUNCS += functions/gnutls_pkcs12_import.short
FUNCS += functions/gnutls_pkcs12_init
FUNCS += functions/gnutls_pkcs12_init.short
FUNCS += functions/gnutls_pkcs12_mac_info
FUNCS += functions/gnutls_pkcs12_mac_info.short
FUNCS += functions/gnutls_pkcs12_set_bag
FUNCS += functions/gnutls_pkcs12_set_bag.short
FUNCS += functions/gnutls_pkcs12_simple_parse
FUNCS += functions/gnutls_pkcs12_simple_parse.short
FUNCS += functions/gnutls_pkcs12_verify_mac
FUNCS += functions/gnutls_pkcs12_verify_mac.short
FUNCS += functions/gnutls_pkcs7_add_attr
FUNCS += functions/gnutls_pkcs7_add_attr.short
FUNCS += functions/gnutls_pkcs7_attrs_deinit
FUNCS += functions/gnutls_pkcs7_attrs_deinit.short
FUNCS += functions/gnutls_pkcs7_deinit
FUNCS += functions/gnutls_pkcs7_deinit.short
FUNCS += functions/gnutls_pkcs7_delete_crl
FUNCS += functions/gnutls_pkcs7_delete_crl.short
FUNCS += functions/gnutls_pkcs7_delete_crt
FUNCS += functions/gnutls_pkcs7_delete_crt.short
FUNCS += functions/gnutls_pkcs7_export
FUNCS += functions/gnutls_pkcs7_export.short
FUNCS += functions/gnutls_pkcs7_export2
FUNCS += functions/gnutls_pkcs7_export2.short
FUNCS += functions/gnutls_pkcs7_get_attr
FUNCS += functions/gnutls_pkcs7_get_attr.short
FUNCS += functions/gnutls_pkcs7_get_crl_count
FUNCS += functions/gnutls_pkcs7_get_crl_count.short
FUNCS += functions/gnutls_pkcs7_get_crl_raw
FUNCS += functions/gnutls_pkcs7_get_crl_raw.short
FUNCS += functions/gnutls_pkcs7_get_crl_raw2
FUNCS += functions/gnutls_pkcs7_get_crl_raw2.short
FUNCS += functions/gnutls_pkcs7_get_crt_count
FUNCS += functions/gnutls_pkcs7_get_crt_count.short
FUNCS += functions/gnutls_pkcs7_get_crt_raw
FUNCS += functions/gnutls_pkcs7_get_crt_raw.short
FUNCS += functions/gnutls_pkcs7_get_crt_raw2
FUNCS += functions/gnutls_pkcs7_get_crt_raw2.short
FUNCS += functions/gnutls_pkcs7_get_embedded_data
FUNCS += functions/gnutls_pkcs7_get_embedded_data.short
FUNCS += functions/gnutls_pkcs7_get_embedded_data_oid
FUNCS += functions/gnutls_pkcs7_get_embedded_data_oid.short
FUNCS += functions/gnutls_pkcs7_get_signature_count
FUNCS += functions/gnutls_pkcs7_get_signature_count.short
FUNCS += functions/gnutls_pkcs7_get_signature_info
FUNCS += functions/gnutls_pkcs7_get_signature_info.short
FUNCS += functions/gnutls_pkcs7_import
FUNCS += functions/gnutls_pkcs7_import.short
FUNCS += functions/gnutls_pkcs7_init
FUNCS += functions/gnutls_pkcs7_init.short
FUNCS += functions/gnutls_pkcs7_print
FUNCS += functions/gnutls_pkcs7_print.short
FUNCS += functions/gnutls_pkcs7_print_signature_info
FUNCS += functions/gnutls_pkcs7_print_signature_info.short
FUNCS += functions/gnutls_pkcs7_set_crl
FUNCS += functions/gnutls_pkcs7_set_crl.short
FUNCS += functions/gnutls_pkcs7_set_crl_raw
FUNCS += functions/gnutls_pkcs7_set_crl_raw.short
FUNCS += functions/gnutls_pkcs7_set_crt
FUNCS += functions/gnutls_pkcs7_set_crt.short
FUNCS += functions/gnutls_pkcs7_set_crt_raw
FUNCS += functions/gnutls_pkcs7_set_crt_raw.short
FUNCS += functions/gnutls_pkcs7_sign
FUNCS += functions/gnutls_pkcs7_sign.short
FUNCS += functions/gnutls_pkcs7_signature_info_deinit
FUNCS += functions/gnutls_pkcs7_signature_info_deinit.short
FUNCS += functions/gnutls_pkcs7_verify
FUNCS += functions/gnutls_pkcs7_verify.short
FUNCS += functions/gnutls_pkcs7_verify_direct
FUNCS += functions/gnutls_pkcs7_verify_direct.short
FUNCS += functions/gnutls_pkcs8_info
FUNCS += functions/gnutls_pkcs8_info.short
FUNCS += functions/gnutls_pkcs_schema_get_name
FUNCS += functions/gnutls_pkcs_schema_get_name.short
FUNCS += functions/gnutls_pkcs_schema_get_oid
FUNCS += functions/gnutls_pkcs_schema_get_oid.short
FUNCS += functions/gnutls_pk_get_id
FUNCS += functions/gnutls_pk_get_id.short
FUNCS += functions/gnutls_pk_get_name
FUNCS += functions/gnutls_pk_get_name.short
FUNCS += functions/gnutls_pk_get_oid
FUNCS += functions/gnutls_pk_get_oid.short
FUNCS += functions/gnutls_pk_list
FUNCS += functions/gnutls_pk_list.short
FUNCS += functions/gnutls_pk_to_sign
FUNCS += functions/gnutls_pk_to_sign.short
FUNCS += functions/gnutls_prf
FUNCS += functions/gnutls_prf.short
FUNCS += functions/gnutls_prf_early
FUNCS += functions/gnutls_prf_early.short
FUNCS += functions/gnutls_prf_hash_get
FUNCS += functions/gnutls_prf_hash_get.short
FUNCS += functions/gnutls_prf_raw
FUNCS += functions/gnutls_prf_raw.short
FUNCS += functions/gnutls_prf_rfc5705
FUNCS += functions/gnutls_prf_rfc5705.short
FUNCS += functions/gnutls_priority_certificate_type_list
FUNCS += functions/gnutls_priority_certificate_type_list.short
FUNCS += functions/gnutls_priority_certificate_type_list2
FUNCS += functions/gnutls_priority_certificate_type_list2.short
FUNCS += functions/gnutls_priority_cipher_list
FUNCS += functions/gnutls_priority_cipher_list.short
FUNCS += functions/gnutls_priority_compression_list
FUNCS += functions/gnutls_priority_compression_list.short
FUNCS += functions/gnutls_priority_deinit
FUNCS += functions/gnutls_priority_deinit.short
FUNCS += functions/gnutls_priority_ecc_curve_list
FUNCS += functions/gnutls_priority_ecc_curve_list.short
FUNCS += functions/gnutls_priority_get_cipher_suite_index
FUNCS += functions/gnutls_priority_get_cipher_suite_index.short
FUNCS += functions/gnutls_priority_group_list
FUNCS += functions/gnutls_priority_group_list.short
FUNCS += functions/gnutls_priority_init
FUNCS += functions/gnutls_priority_init.short
FUNCS += functions/gnutls_priority_init2
FUNCS += functions/gnutls_priority_init2.short
FUNCS += functions/gnutls_priority_kx_list
FUNCS += functions/gnutls_priority_kx_list.short
FUNCS += functions/gnutls_priority_mac_list
FUNCS += functions/gnutls_priority_mac_list.short
FUNCS += functions/gnutls_priority_protocol_list
FUNCS += functions/gnutls_priority_protocol_list.short
FUNCS += functions/gnutls_priority_set
FUNCS += functions/gnutls_priority_set.short
FUNCS += functions/gnutls_priority_set_direct
FUNCS += functions/gnutls_priority_set_direct.short
FUNCS += functions/gnutls_priority_sign_list
FUNCS += functions/gnutls_priority_sign_list.short
FUNCS += functions/gnutls_priority_string_list
FUNCS += functions/gnutls_priority_string_list.short
FUNCS += functions/gnutls_privkey_decrypt_data
FUNCS += functions/gnutls_privkey_decrypt_data.short
FUNCS += functions/gnutls_privkey_decrypt_data2
FUNCS += functions/gnutls_privkey_decrypt_data2.short
FUNCS += functions/gnutls_privkey_deinit
FUNCS += functions/gnutls_privkey_deinit.short
FUNCS += functions/gnutls_privkey_export_dsa_raw
FUNCS += functions/gnutls_privkey_export_dsa_raw.short
FUNCS += functions/gnutls_privkey_export_dsa_raw2
FUNCS += functions/gnutls_privkey_export_dsa_raw2.short
FUNCS += functions/gnutls_privkey_export_ecc_raw
FUNCS += functions/gnutls_privkey_export_ecc_raw.short
FUNCS += functions/gnutls_privkey_export_ecc_raw2
FUNCS += functions/gnutls_privkey_export_ecc_raw2.short
FUNCS += functions/gnutls_privkey_export_gost_raw2
FUNCS += functions/gnutls_privkey_export_gost_raw2.short
FUNCS += functions/gnutls_privkey_export_openpgp
FUNCS += functions/gnutls_privkey_export_openpgp.short
FUNCS += functions/gnutls_privkey_export_pkcs11
FUNCS += functions/gnutls_privkey_export_pkcs11.short
FUNCS += functions/gnutls_privkey_export_rsa_raw
FUNCS += functions/gnutls_privkey_export_rsa_raw.short
FUNCS += functions/gnutls_privkey_export_rsa_raw2
FUNCS += functions/gnutls_privkey_export_rsa_raw2.short
FUNCS += functions/gnutls_privkey_export_x509
FUNCS += functions/gnutls_privkey_export_x509.short
FUNCS += functions/gnutls_privkey_generate
FUNCS += functions/gnutls_privkey_generate.short
FUNCS += functions/gnutls_privkey_generate2
FUNCS += functions/gnutls_privkey_generate2.short
FUNCS += functions/gnutls_privkey_get_pk_algorithm
FUNCS += functions/gnutls_privkey_get_pk_algorithm.short
FUNCS += functions/gnutls_privkey_get_seed
FUNCS += functions/gnutls_privkey_get_seed.short
FUNCS += functions/gnutls_privkey_get_spki
FUNCS += functions/gnutls_privkey_get_spki.short
FUNCS += functions/gnutls_privkey_get_type
FUNCS += functions/gnutls_privkey_get_type.short
FUNCS += functions/gnutls_privkey_import_dsa_raw
FUNCS += functions/gnutls_privkey_import_dsa_raw.short
FUNCS += functions/gnutls_privkey_import_ecc_raw
FUNCS += functions/gnutls_privkey_import_ecc_raw.short
FUNCS += functions/gnutls_privkey_import_ext
FUNCS += functions/gnutls_privkey_import_ext.short
FUNCS += functions/gnutls_privkey_import_ext2
FUNCS += functions/gnutls_privkey_import_ext2.short
FUNCS += functions/gnutls_privkey_import_ext3
FUNCS += functions/gnutls_privkey_import_ext3.short
FUNCS += functions/gnutls_privkey_import_ext4
FUNCS += functions/gnutls_privkey_import_ext4.short
FUNCS += functions/gnutls_privkey_import_gost_raw
FUNCS += functions/gnutls_privkey_import_gost_raw.short
FUNCS += functions/gnutls_privkey_import_openpgp
FUNCS += functions/gnutls_privkey_import_openpgp.short
FUNCS += functions/gnutls_privkey_import_openpgp_raw
FUNCS += functions/gnutls_privkey_import_openpgp_raw.short
FUNCS += functions/gnutls_privkey_import_pkcs11
FUNCS += functions/gnutls_privkey_import_pkcs11.short
FUNCS += functions/gnutls_privkey_import_pkcs11_url
FUNCS += functions/gnutls_privkey_import_pkcs11_url.short
FUNCS += functions/gnutls_privkey_import_rsa_raw
FUNCS += functions/gnutls_privkey_import_rsa_raw.short
FUNCS += functions/gnutls_privkey_import_tpm_raw
FUNCS += functions/gnutls_privkey_import_tpm_raw.short
FUNCS += functions/gnutls_privkey_import_tpm_url
FUNCS += functions/gnutls_privkey_import_tpm_url.short
FUNCS += functions/gnutls_privkey_import_url
FUNCS += functions/gnutls_privkey_import_url.short
FUNCS += functions/gnutls_privkey_import_x509
FUNCS += functions/gnutls_privkey_import_x509.short
FUNCS += functions/gnutls_privkey_import_x509_raw
FUNCS += functions/gnutls_privkey_import_x509_raw.short
FUNCS += functions/gnutls_privkey_init
FUNCS += functions/gnutls_privkey_init.short
FUNCS += functions/gnutls_privkey_set_flags
FUNCS += functions/gnutls_privkey_set_flags.short
FUNCS += functions/gnutls_privkey_set_pin_function
FUNCS += functions/gnutls_privkey_set_pin_function.short
FUNCS += functions/gnutls_privkey_set_spki
FUNCS += functions/gnutls_privkey_set_spki.short
FUNCS += functions/gnutls_privkey_sign_data
FUNCS += functions/gnutls_privkey_sign_data.short
FUNCS += functions/gnutls_privkey_sign_data2
FUNCS += functions/gnutls_privkey_sign_data2.short
FUNCS += functions/gnutls_privkey_sign_hash
FUNCS += functions/gnutls_privkey_sign_hash.short
FUNCS += functions/gnutls_privkey_sign_hash2
FUNCS += functions/gnutls_privkey_sign_hash2.short
FUNCS += functions/gnutls_privkey_status
FUNCS += functions/gnutls_privkey_status.short
FUNCS += functions/gnutls_privkey_verify_params
FUNCS += functions/gnutls_privkey_verify_params.short
FUNCS += functions/gnutls_privkey_verify_seed
FUNCS += functions/gnutls_privkey_verify_seed.short
FUNCS += functions/gnutls_protocol_get_id
FUNCS += functions/gnutls_protocol_get_id.short
FUNCS += functions/gnutls_protocol_get_name
FUNCS += functions/gnutls_protocol_get_name.short
FUNCS += functions/gnutls_protocol_get_version
FUNCS += functions/gnutls_protocol_get_version.short
FUNCS += functions/gnutls_protocol_list
FUNCS += functions/gnutls_protocol_list.short
FUNCS += functions/gnutls_psk_allocate_client_credentials
FUNCS += functions/gnutls_psk_allocate_client_credentials.short
FUNCS += functions/gnutls_psk_allocate_server_credentials
FUNCS += functions/gnutls_psk_allocate_server_credentials.short
FUNCS += functions/gnutls_psk_client_get_hint
FUNCS += functions/gnutls_psk_client_get_hint.short
FUNCS += functions/gnutls_psk_free_client_credentials
FUNCS += functions/gnutls_psk_free_client_credentials.short
FUNCS += functions/gnutls_psk_free_server_credentials
FUNCS += functions/gnutls_psk_free_server_credentials.short
FUNCS += functions/gnutls_psk_server_get_username
FUNCS += functions/gnutls_psk_server_get_username.short
FUNCS += functions/gnutls_psk_server_get_username2
FUNCS += functions/gnutls_psk_server_get_username2.short
FUNCS += functions/gnutls_psk_set_client_credentials
FUNCS += functions/gnutls_psk_set_client_credentials.short
FUNCS += functions/gnutls_psk_set_client_credentials2
FUNCS += functions/gnutls_psk_set_client_credentials2.short
FUNCS += functions/gnutls_psk_set_client_credentials_function
FUNCS += functions/gnutls_psk_set_client_credentials_function.short
FUNCS += functions/gnutls_psk_set_client_credentials_function2
FUNCS += functions/gnutls_psk_set_client_credentials_function2.short
FUNCS += functions/gnutls_psk_set_params_function
FUNCS += functions/gnutls_psk_set_params_function.short
FUNCS += functions/gnutls_psk_set_server_credentials_file
FUNCS += functions/gnutls_psk_set_server_credentials_file.short
FUNCS += functions/gnutls_psk_set_server_credentials_function
FUNCS += functions/gnutls_psk_set_server_credentials_function.short
FUNCS += functions/gnutls_psk_set_server_credentials_function2
FUNCS += functions/gnutls_psk_set_server_credentials_function2.short
FUNCS += functions/gnutls_psk_set_server_credentials_hint
FUNCS += functions/gnutls_psk_set_server_credentials_hint.short
FUNCS += functions/gnutls_psk_set_server_dh_params
FUNCS += functions/gnutls_psk_set_server_dh_params.short
FUNCS += functions/gnutls_psk_set_server_known_dh_params
FUNCS += functions/gnutls_psk_set_server_known_dh_params.short
FUNCS += functions/gnutls_psk_set_server_params_function
FUNCS += functions/gnutls_psk_set_server_params_function.short
FUNCS += functions/gnutls_pubkey_deinit
FUNCS += functions/gnutls_pubkey_deinit.short
FUNCS += functions/gnutls_pubkey_encrypt_data
FUNCS += functions/gnutls_pubkey_encrypt_data.short
FUNCS += functions/gnutls_pubkey_export
FUNCS += functions/gnutls_pubkey_export.short
FUNCS += functions/gnutls_pubkey_export2
FUNCS += functions/gnutls_pubkey_export2.short
FUNCS += functions/gnutls_pubkey_export_dsa_raw
FUNCS += functions/gnutls_pubkey_export_dsa_raw.short
FUNCS += functions/gnutls_pubkey_export_dsa_raw2
FUNCS += functions/gnutls_pubkey_export_dsa_raw2.short
FUNCS += functions/gnutls_pubkey_export_ecc_raw
FUNCS += functions/gnutls_pubkey_export_ecc_raw.short
FUNCS += functions/gnutls_pubkey_export_ecc_raw2
FUNCS += functions/gnutls_pubkey_export_ecc_raw2.short
FUNCS += functions/gnutls_pubkey_export_ecc_x962
FUNCS += functions/gnutls_pubkey_export_ecc_x962.short
FUNCS += functions/gnutls_pubkey_export_gost_raw2
FUNCS += functions/gnutls_pubkey_export_gost_raw2.short
FUNCS += functions/gnutls_pubkey_export_rsa_raw
FUNCS += functions/gnutls_pubkey_export_rsa_raw.short
FUNCS += functions/gnutls_pubkey_export_rsa_raw2
FUNCS += functions/gnutls_pubkey_export_rsa_raw2.short
FUNCS += functions/gnutls_pubkey_get_key_id
FUNCS += functions/gnutls_pubkey_get_key_id.short
FUNCS += functions/gnutls_pubkey_get_key_usage
FUNCS += functions/gnutls_pubkey_get_key_usage.short
FUNCS += functions/gnutls_pubkey_get_openpgp_key_id
FUNCS += functions/gnutls_pubkey_get_openpgp_key_id.short
FUNCS += functions/gnutls_pubkey_get_pk_algorithm
FUNCS += functions/gnutls_pubkey_get_pk_algorithm.short
FUNCS += functions/gnutls_pubkey_get_preferred_hash_algorithm
FUNCS += functions/gnutls_pubkey_get_preferred_hash_algorithm.short
FUNCS += functions/gnutls_pubkey_get_spki
FUNCS += functions/gnutls_pubkey_get_spki.short
FUNCS += functions/gnutls_pubkey_import
FUNCS += functions/gnutls_pubkey_import.short
FUNCS += functions/gnutls_pubkey_import_dsa_raw
FUNCS += functions/gnutls_pubkey_import_dsa_raw.short
FUNCS += functions/gnutls_pubkey_import_ecc_raw
FUNCS += functions/gnutls_pubkey_import_ecc_raw.short
FUNCS += functions/gnutls_pubkey_import_ecc_x962
FUNCS += functions/gnutls_pubkey_import_ecc_x962.short
FUNCS += functions/gnutls_pubkey_import_gost_raw
FUNCS += functions/gnutls_pubkey_import_gost_raw.short
FUNCS += functions/gnutls_pubkey_import_openpgp
FUNCS += functions/gnutls_pubkey_import_openpgp.short
FUNCS += functions/gnutls_pubkey_import_openpgp_raw
FUNCS += functions/gnutls_pubkey_import_openpgp_raw.short
FUNCS += functions/gnutls_pubkey_import_pkcs11
FUNCS += functions/gnutls_pubkey_import_pkcs11.short
FUNCS += functions/gnutls_pubkey_import_privkey
FUNCS += functions/gnutls_pubkey_import_privkey.short
FUNCS += functions/gnutls_pubkey_import_rsa_raw
FUNCS += functions/gnutls_pubkey_import_rsa_raw.short
FUNCS += functions/gnutls_pubkey_import_tpm_raw
FUNCS += functions/gnutls_pubkey_import_tpm_raw.short
FUNCS += functions/gnutls_pubkey_import_tpm_url
FUNCS += functions/gnutls_pubkey_import_tpm_url.short
FUNCS += functions/gnutls_pubkey_import_url
FUNCS += functions/gnutls_pubkey_import_url.short
FUNCS += functions/gnutls_pubkey_import_x509
FUNCS += functions/gnutls_pubkey_import_x509.short
FUNCS += functions/gnutls_pubkey_import_x509_crq
FUNCS += functions/gnutls_pubkey_import_x509_crq.short
FUNCS += functions/gnutls_pubkey_import_x509_raw
FUNCS += functions/gnutls_pubkey_import_x509_raw.short
FUNCS += functions/gnutls_pubkey_init
FUNCS += functions/gnutls_pubkey_init.short
FUNCS += functions/gnutls_pubkey_print
FUNCS += functions/gnutls_pubkey_print.short
FUNCS += functions/gnutls_pubkey_set_key_usage
FUNCS += functions/gnutls_pubkey_set_key_usage.short
FUNCS += functions/gnutls_pubkey_set_pin_function
FUNCS += functions/gnutls_pubkey_set_pin_function.short
FUNCS += functions/gnutls_pubkey_set_spki
FUNCS += functions/gnutls_pubkey_set_spki.short
FUNCS += functions/gnutls_pubkey_verify_data2
FUNCS += functions/gnutls_pubkey_verify_data2.short
FUNCS += functions/gnutls_pubkey_verify_hash2
FUNCS += functions/gnutls_pubkey_verify_hash2.short
FUNCS += functions/gnutls_pubkey_verify_params
FUNCS += functions/gnutls_pubkey_verify_params.short
FUNCS += functions/gnutls_random_art
FUNCS += functions/gnutls_random_art.short
FUNCS += functions/gnutls_range_split
FUNCS += functions/gnutls_range_split.short
FUNCS += functions/gnutls_reauth
FUNCS += functions/gnutls_reauth.short
FUNCS += functions/gnutls_record_can_use_length_hiding
FUNCS += functions/gnutls_record_can_use_length_hiding.short
FUNCS += functions/gnutls_record_check_corked
FUNCS += functions/gnutls_record_check_corked.short
FUNCS += functions/gnutls_record_check_pending
FUNCS += functions/gnutls_record_check_pending.short
FUNCS += functions/gnutls_record_cork
FUNCS += functions/gnutls_record_cork.short
FUNCS += functions/gnutls_record_disable_padding
FUNCS += functions/gnutls_record_disable_padding.short
FUNCS += functions/gnutls_record_discard_queued
FUNCS += functions/gnutls_record_discard_queued.short
FUNCS += functions/gnutls_record_get_direction
FUNCS += functions/gnutls_record_get_direction.short
FUNCS += functions/gnutls_record_get_discarded
FUNCS += functions/gnutls_record_get_discarded.short
FUNCS += functions/gnutls_record_get_max_early_data_size
FUNCS += functions/gnutls_record_get_max_early_data_size.short
FUNCS += functions/gnutls_record_get_max_size
FUNCS += functions/gnutls_record_get_max_size.short
FUNCS += functions/gnutls_record_get_state
FUNCS += functions/gnutls_record_get_state.short
FUNCS += functions/gnutls_record_overhead_size
FUNCS += functions/gnutls_record_overhead_size.short
FUNCS += functions/gnutls_record_recv
FUNCS += functions/gnutls_record_recv.short
FUNCS += functions/gnutls_record_recv_early_data
FUNCS += functions/gnutls_record_recv_early_data.short
FUNCS += functions/gnutls_record_recv_packet
FUNCS += functions/gnutls_record_recv_packet.short
FUNCS += functions/gnutls_record_recv_seq
FUNCS += functions/gnutls_record_recv_seq.short
FUNCS += functions/gnutls_record_send
FUNCS += functions/gnutls_record_send.short
FUNCS += functions/gnutls_record_send2
FUNCS += functions/gnutls_record_send2.short
FUNCS += functions/gnutls_record_send_early_data
FUNCS += functions/gnutls_record_send_early_data.short
FUNCS += functions/gnutls_record_send_range
FUNCS += functions/gnutls_record_send_range.short
FUNCS += functions/gnutls_record_set_max_early_data_size
FUNCS += functions/gnutls_record_set_max_early_data_size.short
FUNCS += functions/gnutls_record_set_max_recv_size
FUNCS += functions/gnutls_record_set_max_recv_size.short
FUNCS += functions/gnutls_record_set_max_size
FUNCS += functions/gnutls_record_set_max_size.short
FUNCS += functions/gnutls_record_set_state
FUNCS += functions/gnutls_record_set_state.short
FUNCS += functions/gnutls_record_set_timeout
FUNCS += functions/gnutls_record_set_timeout.short
FUNCS += functions/gnutls_record_uncork
FUNCS += functions/gnutls_record_uncork.short
FUNCS += functions/gnutls_register_custom_url
FUNCS += functions/gnutls_register_custom_url.short
FUNCS += functions/gnutls_rehandshake
FUNCS += functions/gnutls_rehandshake.short
FUNCS += functions/gnutls_rnd
FUNCS += functions/gnutls_rnd.short
FUNCS += functions/gnutls_rnd_refresh
FUNCS += functions/gnutls_rnd_refresh.short
FUNCS += functions/gnutls_safe_renegotiation_status
FUNCS += functions/gnutls_safe_renegotiation_status.short
FUNCS += functions/gnutls_sec_param_get_name
FUNCS += functions/gnutls_sec_param_get_name.short
FUNCS += functions/gnutls_sec_param_to_pk_bits
FUNCS += functions/gnutls_sec_param_to_pk_bits.short
FUNCS += functions/gnutls_sec_param_to_symmetric_bits
FUNCS += functions/gnutls_sec_param_to_symmetric_bits.short
FUNCS += functions/gnutls_server_name_get
FUNCS += functions/gnutls_server_name_get.short
FUNCS += functions/gnutls_server_name_set
FUNCS += functions/gnutls_server_name_set.short
FUNCS += functions/gnutls_session_channel_binding
FUNCS += functions/gnutls_session_channel_binding.short
FUNCS += functions/gnutls_session_enable_compatibility_mode
FUNCS += functions/gnutls_session_enable_compatibility_mode.short
FUNCS += functions/gnutls_session_etm_status
FUNCS += functions/gnutls_session_etm_status.short
FUNCS += functions/gnutls_session_ext_master_secret_status
FUNCS += functions/gnutls_session_ext_master_secret_status.short
FUNCS += functions/gnutls_session_ext_register
FUNCS += functions/gnutls_session_ext_register.short
FUNCS += functions/gnutls_session_force_valid
FUNCS += functions/gnutls_session_force_valid.short
FUNCS += functions/gnutls_session_get_data
FUNCS += functions/gnutls_session_get_data.short
FUNCS += functions/gnutls_session_get_data2
FUNCS += functions/gnutls_session_get_data2.short
FUNCS += functions/gnutls_session_get_desc
FUNCS += functions/gnutls_session_get_desc.short
FUNCS += functions/gnutls_session_get_flags
FUNCS += functions/gnutls_session_get_flags.short
FUNCS += functions/gnutls_session_get_id
FUNCS += functions/gnutls_session_get_id.short
FUNCS += functions/gnutls_session_get_id2
FUNCS += functions/gnutls_session_get_id2.short
FUNCS += functions/gnutls_session_get_keylog_function
FUNCS += functions/gnutls_session_get_keylog_function.short
FUNCS += functions/gnutls_session_get_master_secret
FUNCS += functions/gnutls_session_get_master_secret.short
FUNCS += functions/gnutls_session_get_ptr
FUNCS += functions/gnutls_session_get_ptr.short
FUNCS += functions/gnutls_session_get_random
FUNCS += functions/gnutls_session_get_random.short
FUNCS += functions/gnutls_session_get_verify_cert_status
FUNCS += functions/gnutls_session_get_verify_cert_status.short
FUNCS += functions/gnutls_session_is_resumed
FUNCS += functions/gnutls_session_is_resumed.short
FUNCS += functions/gnutls_session_key_update
FUNCS += functions/gnutls_session_key_update.short
FUNCS += functions/gnutls_session_resumption_requested
FUNCS += functions/gnutls_session_resumption_requested.short
FUNCS += functions/gnutls_session_set_data
FUNCS += functions/gnutls_session_set_data.short
FUNCS += functions/gnutls_session_set_id
FUNCS += functions/gnutls_session_set_id.short
FUNCS += functions/gnutls_session_set_keylog_function
FUNCS += functions/gnutls_session_set_keylog_function.short
FUNCS += functions/gnutls_session_set_premaster
FUNCS += functions/gnutls_session_set_premaster.short
FUNCS += functions/gnutls_session_set_ptr
FUNCS += functions/gnutls_session_set_ptr.short
FUNCS += functions/gnutls_session_set_verify_cert
FUNCS += functions/gnutls_session_set_verify_cert.short
FUNCS += functions/gnutls_session_set_verify_cert2
FUNCS += functions/gnutls_session_set_verify_cert2.short
FUNCS += functions/gnutls_session_set_verify_function
FUNCS += functions/gnutls_session_set_verify_function.short
FUNCS += functions/gnutls_session_set_verify_output_function
FUNCS += functions/gnutls_session_set_verify_output_function.short
FUNCS += functions/gnutls_session_supplemental_register
FUNCS += functions/gnutls_session_supplemental_register.short
FUNCS += functions/gnutls_session_ticket_enable_client
FUNCS += functions/gnutls_session_ticket_enable_client.short
FUNCS += functions/gnutls_session_ticket_enable_server
FUNCS += functions/gnutls_session_ticket_enable_server.short
FUNCS += functions/gnutls_session_ticket_key_generate
FUNCS += functions/gnutls_session_ticket_key_generate.short
FUNCS += functions/gnutls_session_ticket_send
FUNCS += functions/gnutls_session_ticket_send.short
FUNCS += functions/gnutls_set_default_priority
FUNCS += functions/gnutls_set_default_priority.short
FUNCS += functions/gnutls_set_default_priority_append
FUNCS += functions/gnutls_set_default_priority_append.short
FUNCS += functions/gnutls_sign_algorithm_get
FUNCS += functions/gnutls_sign_algorithm_get.short
FUNCS += functions/gnutls_sign_algorithm_get_client
FUNCS += functions/gnutls_sign_algorithm_get_client.short
FUNCS += functions/gnutls_sign_algorithm_get_requested
FUNCS += functions/gnutls_sign_algorithm_get_requested.short
FUNCS += functions/gnutls_sign_get_hash_algorithm
FUNCS += functions/gnutls_sign_get_hash_algorithm.short
FUNCS += functions/gnutls_sign_get_id
FUNCS += functions/gnutls_sign_get_id.short
FUNCS += functions/gnutls_sign_get_name
FUNCS += functions/gnutls_sign_get_name.short
FUNCS += functions/gnutls_sign_get_oid
FUNCS += functions/gnutls_sign_get_oid.short
FUNCS += functions/gnutls_sign_get_pk_algorithm
FUNCS += functions/gnutls_sign_get_pk_algorithm.short
FUNCS += functions/gnutls_sign_is_secure
FUNCS += functions/gnutls_sign_is_secure.short
FUNCS += functions/gnutls_sign_is_secure2
FUNCS += functions/gnutls_sign_is_secure2.short
FUNCS += functions/gnutls_sign_list
FUNCS += functions/gnutls_sign_list.short
FUNCS += functions/gnutls_sign_supports_pk_algorithm
FUNCS += functions/gnutls_sign_supports_pk_algorithm.short
FUNCS += functions/gnutls_srp_allocate_client_credentials
FUNCS += functions/gnutls_srp_allocate_client_credentials.short
FUNCS += functions/gnutls_srp_allocate_server_credentials
FUNCS += functions/gnutls_srp_allocate_server_credentials.short
FUNCS += functions/gnutls_srp_base64_decode
FUNCS += functions/gnutls_srp_base64_decode.short
FUNCS += functions/gnutls_srp_base64_decode2
FUNCS += functions/gnutls_srp_base64_decode2.short
FUNCS += functions/gnutls_srp_base64_encode
FUNCS += functions/gnutls_srp_base64_encode.short
FUNCS += functions/gnutls_srp_base64_encode2
FUNCS += functions/gnutls_srp_base64_encode2.short
FUNCS += functions/gnutls_srp_free_client_credentials
FUNCS += functions/gnutls_srp_free_client_credentials.short
FUNCS += functions/gnutls_srp_free_server_credentials
FUNCS += functions/gnutls_srp_free_server_credentials.short
FUNCS += functions/gnutls_srp_server_get_username
FUNCS += functions/gnutls_srp_server_get_username.short
FUNCS += functions/gnutls_srp_set_client_credentials
FUNCS += functions/gnutls_srp_set_client_credentials.short
FUNCS += functions/gnutls_srp_set_client_credentials_function
FUNCS += functions/gnutls_srp_set_client_credentials_function.short
FUNCS += functions/gnutls_srp_set_prime_bits
FUNCS += functions/gnutls_srp_set_prime_bits.short
FUNCS += functions/gnutls_srp_set_server_credentials_file
FUNCS += functions/gnutls_srp_set_server_credentials_file.short
FUNCS += functions/gnutls_srp_set_server_credentials_function
FUNCS += functions/gnutls_srp_set_server_credentials_function.short
FUNCS += functions/gnutls_srp_set_server_fake_salt_seed
FUNCS += functions/gnutls_srp_set_server_fake_salt_seed.short
FUNCS += functions/gnutls_srp_verifier
FUNCS += functions/gnutls_srp_verifier.short
FUNCS += functions/gnutls_srtp_get_keys
FUNCS += functions/gnutls_srtp_get_keys.short
FUNCS += functions/gnutls_srtp_get_mki
FUNCS += functions/gnutls_srtp_get_mki.short
FUNCS += functions/gnutls_srtp_get_profile_id
FUNCS += functions/gnutls_srtp_get_profile_id.short
FUNCS += functions/gnutls_srtp_get_profile_name
FUNCS += functions/gnutls_srtp_get_profile_name.short
FUNCS += functions/gnutls_srtp_get_selected_profile
FUNCS += functions/gnutls_srtp_get_selected_profile.short
FUNCS += functions/gnutls_srtp_set_mki
FUNCS += functions/gnutls_srtp_set_mki.short
FUNCS += functions/gnutls_srtp_set_profile
FUNCS += functions/gnutls_srtp_set_profile.short
FUNCS += functions/gnutls_srtp_set_profile_direct
FUNCS += functions/gnutls_srtp_set_profile_direct.short
FUNCS += functions/gnutls_store_commitment
FUNCS += functions/gnutls_store_commitment.short
FUNCS += functions/gnutls_store_pubkey
FUNCS += functions/gnutls_store_pubkey.short
FUNCS += functions/gnutls_strerror
FUNCS += functions/gnutls_strerror.short
FUNCS += functions/gnutls_strerror_name
FUNCS += functions/gnutls_strerror_name.short
FUNCS += functions/gnutls_subject_alt_names_deinit
FUNCS += functions/gnutls_subject_alt_names_deinit.short
FUNCS += functions/gnutls_subject_alt_names_get
FUNCS += functions/gnutls_subject_alt_names_get.short
FUNCS += functions/gnutls_subject_alt_names_init
FUNCS += functions/gnutls_subject_alt_names_init.short
FUNCS += functions/gnutls_subject_alt_names_set
FUNCS += functions/gnutls_subject_alt_names_set.short
FUNCS += functions/gnutls_supplemental_get_name
FUNCS += functions/gnutls_supplemental_get_name.short
FUNCS += functions/gnutls_supplemental_recv
FUNCS += functions/gnutls_supplemental_recv.short
FUNCS += functions/gnutls_supplemental_register
FUNCS += functions/gnutls_supplemental_register.short
FUNCS += functions/gnutls_supplemental_send
FUNCS += functions/gnutls_supplemental_send.short
FUNCS += functions/gnutls_system_key_add_x509
FUNCS += functions/gnutls_system_key_add_x509.short
FUNCS += functions/gnutls_system_key_delete
FUNCS += functions/gnutls_system_key_delete.short
FUNCS += functions/gnutls_system_key_iter_deinit
FUNCS += functions/gnutls_system_key_iter_deinit.short
FUNCS += functions/gnutls_system_key_iter_get_info
FUNCS += functions/gnutls_system_key_iter_get_info.short
FUNCS += functions/gnutls_system_recv_timeout
FUNCS += functions/gnutls_system_recv_timeout.short
FUNCS += functions/gnutls_tdb_deinit
FUNCS += functions/gnutls_tdb_deinit.short
FUNCS += functions/gnutls_tdb_init
FUNCS += functions/gnutls_tdb_init.short
FUNCS += functions/gnutls_tdb_set_store_commitment_func
FUNCS += functions/gnutls_tdb_set_store_commitment_func.short
FUNCS += functions/gnutls_tdb_set_store_func
FUNCS += functions/gnutls_tdb_set_store_func.short
FUNCS += functions/gnutls_tdb_set_verify_func
FUNCS += functions/gnutls_tdb_set_verify_func.short
FUNCS += functions/gnutls_tpm_get_registered
FUNCS += functions/gnutls_tpm_get_registered.short
FUNCS += functions/gnutls_tpm_key_list_deinit
FUNCS += functions/gnutls_tpm_key_list_deinit.short
FUNCS += functions/gnutls_tpm_key_list_get_url
FUNCS += functions/gnutls_tpm_key_list_get_url.short
FUNCS += functions/gnutls_tpm_privkey_delete
FUNCS += functions/gnutls_tpm_privkey_delete.short
FUNCS += functions/gnutls_tpm_privkey_generate
FUNCS += functions/gnutls_tpm_privkey_generate.short
FUNCS += functions/gnutls_transport_get_int
FUNCS += functions/gnutls_transport_get_int.short
FUNCS += functions/gnutls_transport_get_int2
FUNCS += functions/gnutls_transport_get_int2.short
FUNCS += functions/gnutls_transport_get_ptr
FUNCS += functions/gnutls_transport_get_ptr.short
FUNCS += functions/gnutls_transport_get_ptr2
FUNCS += functions/gnutls_transport_get_ptr2.short
FUNCS += functions/gnutls_transport_set_errno
FUNCS += functions/gnutls_transport_set_errno.short
FUNCS += functions/gnutls_transport_set_errno_function
FUNCS += functions/gnutls_transport_set_errno_function.short
FUNCS += functions/gnutls_transport_set_fastopen
FUNCS += functions/gnutls_transport_set_fastopen.short
FUNCS += functions/gnutls_transport_set_int
FUNCS += functions/gnutls_transport_set_int.short
FUNCS += functions/gnutls_transport_set_int2
FUNCS += functions/gnutls_transport_set_int2.short
FUNCS += functions/gnutls_transport_set_ptr
FUNCS += functions/gnutls_transport_set_ptr.short
FUNCS += functions/gnutls_transport_set_ptr2
FUNCS += functions/gnutls_transport_set_ptr2.short
FUNCS += functions/gnutls_transport_set_pull_function
FUNCS += functions/gnutls_transport_set_pull_function.short
FUNCS += functions/gnutls_transport_set_pull_timeout_function
FUNCS += functions/gnutls_transport_set_pull_timeout_function.short
FUNCS += functions/gnutls_transport_set_push_function
FUNCS += functions/gnutls_transport_set_push_function.short
FUNCS += functions/gnutls_transport_set_vec_push_function
FUNCS += functions/gnutls_transport_set_vec_push_function.short
FUNCS += functions/gnutls_url_is_supported
FUNCS += functions/gnutls_url_is_supported.short
FUNCS += functions/gnutls_utf8_password_normalize
FUNCS += functions/gnutls_utf8_password_normalize.short
FUNCS += functions/gnutls_verify_stored_pubkey
FUNCS += functions/gnutls_verify_stored_pubkey.short
FUNCS += functions/gnutls_x509_aia_deinit
FUNCS += functions/gnutls_x509_aia_deinit.short
FUNCS += functions/gnutls_x509_aia_get
FUNCS += functions/gnutls_x509_aia_get.short
FUNCS += functions/gnutls_x509_aia_init
FUNCS += functions/gnutls_x509_aia_init.short
FUNCS += functions/gnutls_x509_aia_set
FUNCS += functions/gnutls_x509_aia_set.short
FUNCS += functions/gnutls_x509_aki_deinit
FUNCS += functions/gnutls_x509_aki_deinit.short
FUNCS += functions/gnutls_x509_aki_get_cert_issuer
FUNCS += functions/gnutls_x509_aki_get_cert_issuer.short
FUNCS += functions/gnutls_x509_aki_get_id
FUNCS += functions/gnutls_x509_aki_get_id.short
FUNCS += functions/gnutls_x509_aki_init
FUNCS += functions/gnutls_x509_aki_init.short
FUNCS += functions/gnutls_x509_aki_set_cert_issuer
FUNCS += functions/gnutls_x509_aki_set_cert_issuer.short
FUNCS += functions/gnutls_x509_aki_set_id
FUNCS += functions/gnutls_x509_aki_set_id.short
FUNCS += functions/gnutls_x509_cidr_to_rfc5280
FUNCS += functions/gnutls_x509_cidr_to_rfc5280.short
FUNCS += functions/gnutls_x509_crl_check_issuer
FUNCS += functions/gnutls_x509_crl_check_issuer.short
FUNCS += functions/gnutls_x509_crl_deinit
FUNCS += functions/gnutls_x509_crl_deinit.short
FUNCS += functions/gnutls_x509_crl_dist_points_deinit
FUNCS += functions/gnutls_x509_crl_dist_points_deinit.short
FUNCS += functions/gnutls_x509_crl_dist_points_get
FUNCS += functions/gnutls_x509_crl_dist_points_get.short
FUNCS += functions/gnutls_x509_crl_dist_points_init
FUNCS += functions/gnutls_x509_crl_dist_points_init.short
FUNCS += functions/gnutls_x509_crl_dist_points_set
FUNCS += functions/gnutls_x509_crl_dist_points_set.short
FUNCS += functions/gnutls_x509_crl_export
FUNCS += functions/gnutls_x509_crl_export.short
FUNCS += functions/gnutls_x509_crl_export2
FUNCS += functions/gnutls_x509_crl_export2.short
FUNCS += functions/gnutls_x509_crl_get_authority_key_gn_serial
FUNCS += functions/gnutls_x509_crl_get_authority_key_gn_serial.short
FUNCS += functions/gnutls_x509_crl_get_authority_key_id
FUNCS += functions/gnutls_x509_crl_get_authority_key_id.short
FUNCS += functions/gnutls_x509_crl_get_crt_count
FUNCS += functions/gnutls_x509_crl_get_crt_count.short
FUNCS += functions/gnutls_x509_crl_get_crt_serial
FUNCS += functions/gnutls_x509_crl_get_crt_serial.short
FUNCS += functions/gnutls_x509_crl_get_dn_oid
FUNCS += functions/gnutls_x509_crl_get_dn_oid.short
FUNCS += functions/gnutls_x509_crl_get_extension_data
FUNCS += functions/gnutls_x509_crl_get_extension_data.short
FUNCS += functions/gnutls_x509_crl_get_extension_data2
FUNCS += functions/gnutls_x509_crl_get_extension_data2.short
FUNCS += functions/gnutls_x509_crl_get_extension_info
FUNCS += functions/gnutls_x509_crl_get_extension_info.short
FUNCS += functions/gnutls_x509_crl_get_extension_oid
FUNCS += functions/gnutls_x509_crl_get_extension_oid.short
FUNCS += functions/gnutls_x509_crl_get_issuer_dn
FUNCS += functions/gnutls_x509_crl_get_issuer_dn.short
FUNCS += functions/gnutls_x509_crl_get_issuer_dn2
FUNCS += functions/gnutls_x509_crl_get_issuer_dn2.short
FUNCS += functions/gnutls_x509_crl_get_issuer_dn3
FUNCS += functions/gnutls_x509_crl_get_issuer_dn3.short
FUNCS += functions/gnutls_x509_crl_get_issuer_dn_by_oid
FUNCS += functions/gnutls_x509_crl_get_issuer_dn_by_oid.short
FUNCS += functions/gnutls_x509_crl_get_next_update
FUNCS += functions/gnutls_x509_crl_get_next_update.short
FUNCS += functions/gnutls_x509_crl_get_number
FUNCS += functions/gnutls_x509_crl_get_number.short
FUNCS += functions/gnutls_x509_crl_get_raw_issuer_dn
FUNCS += functions/gnutls_x509_crl_get_raw_issuer_dn.short
FUNCS += functions/gnutls_x509_crl_get_signature
FUNCS += functions/gnutls_x509_crl_get_signature.short
FUNCS += functions/gnutls_x509_crl_get_signature_algorithm
FUNCS += functions/gnutls_x509_crl_get_signature_algorithm.short
FUNCS += functions/gnutls_x509_crl_get_signature_oid
FUNCS += functions/gnutls_x509_crl_get_signature_oid.short
FUNCS += functions/gnutls_x509_crl_get_this_update
FUNCS += functions/gnutls_x509_crl_get_this_update.short
FUNCS += functions/gnutls_x509_crl_get_version
FUNCS += functions/gnutls_x509_crl_get_version.short
FUNCS += functions/gnutls_x509_crl_import
FUNCS += functions/gnutls_x509_crl_import.short
FUNCS += functions/gnutls_x509_crl_init
FUNCS += functions/gnutls_x509_crl_init.short
FUNCS += functions/gnutls_x509_crl_iter_crt_serial
FUNCS += functions/gnutls_x509_crl_iter_crt_serial.short
FUNCS += functions/gnutls_x509_crl_iter_deinit
FUNCS += functions/gnutls_x509_crl_iter_deinit.short
FUNCS += functions/gnutls_x509_crl_list_import
FUNCS += functions/gnutls_x509_crl_list_import.short
FUNCS += functions/gnutls_x509_crl_list_import2
FUNCS += functions/gnutls_x509_crl_list_import2.short
FUNCS += functions/gnutls_x509_crl_print
FUNCS += functions/gnutls_x509_crl_print.short
FUNCS += functions/gnutls_x509_crl_privkey_sign
FUNCS += functions/gnutls_x509_crl_privkey_sign.short
FUNCS += functions/gnutls_x509_crl_set_authority_key_id
FUNCS += functions/gnutls_x509_crl_set_authority_key_id.short
FUNCS += functions/gnutls_x509_crl_set_crt
FUNCS += functions/gnutls_x509_crl_set_crt.short
FUNCS += functions/gnutls_x509_crl_set_crt_serial
FUNCS += functions/gnutls_x509_crl_set_crt_serial.short
FUNCS += functions/gnutls_x509_crl_set_next_update
FUNCS += functions/gnutls_x509_crl_set_next_update.short
FUNCS += functions/gnutls_x509_crl_set_number
FUNCS += functions/gnutls_x509_crl_set_number.short
FUNCS += functions/gnutls_x509_crl_set_this_update
FUNCS += functions/gnutls_x509_crl_set_this_update.short
FUNCS += functions/gnutls_x509_crl_set_version
FUNCS += functions/gnutls_x509_crl_set_version.short
FUNCS += functions/gnutls_x509_crl_sign
FUNCS += functions/gnutls_x509_crl_sign.short
FUNCS += functions/gnutls_x509_crl_sign2
FUNCS += functions/gnutls_x509_crl_sign2.short
FUNCS += functions/gnutls_x509_crl_verify
FUNCS += functions/gnutls_x509_crl_verify.short
FUNCS += functions/gnutls_x509_crq_deinit
FUNCS += functions/gnutls_x509_crq_deinit.short
FUNCS += functions/gnutls_x509_crq_export
FUNCS += functions/gnutls_x509_crq_export.short
FUNCS += functions/gnutls_x509_crq_export2
FUNCS += functions/gnutls_x509_crq_export2.short
FUNCS += functions/gnutls_x509_crq_get_attribute_by_oid
FUNCS += functions/gnutls_x509_crq_get_attribute_by_oid.short
FUNCS += functions/gnutls_x509_crq_get_attribute_data
FUNCS += functions/gnutls_x509_crq_get_attribute_data.short
FUNCS += functions/gnutls_x509_crq_get_attribute_info
FUNCS += functions/gnutls_x509_crq_get_attribute_info.short
FUNCS += functions/gnutls_x509_crq_get_basic_constraints
FUNCS += functions/gnutls_x509_crq_get_basic_constraints.short
FUNCS += functions/gnutls_x509_crq_get_challenge_password
FUNCS += functions/gnutls_x509_crq_get_challenge_password.short
FUNCS += functions/gnutls_x509_crq_get_dn
FUNCS += functions/gnutls_x509_crq_get_dn.short
FUNCS += functions/gnutls_x509_crq_get_dn2
FUNCS += functions/gnutls_x509_crq_get_dn2.short
FUNCS += functions/gnutls_x509_crq_get_dn3
FUNCS += functions/gnutls_x509_crq_get_dn3.short
FUNCS += functions/gnutls_x509_crq_get_dn_by_oid
FUNCS += functions/gnutls_x509_crq_get_dn_by_oid.short
FUNCS += functions/gnutls_x509_crq_get_dn_oid
FUNCS += functions/gnutls_x509_crq_get_dn_oid.short
FUNCS += functions/gnutls_x509_crq_get_extension_by_oid
FUNCS += functions/gnutls_x509_crq_get_extension_by_oid.short
FUNCS += functions/gnutls_x509_crq_get_extension_by_oid2
FUNCS += functions/gnutls_x509_crq_get_extension_by_oid2.short
FUNCS += functions/gnutls_x509_crq_get_extension_data
FUNCS += functions/gnutls_x509_crq_get_extension_data.short
FUNCS += functions/gnutls_x509_crq_get_extension_data2
FUNCS += functions/gnutls_x509_crq_get_extension_data2.short
FUNCS += functions/gnutls_x509_crq_get_extension_info
FUNCS += functions/gnutls_x509_crq_get_extension_info.short
FUNCS += functions/gnutls_x509_crq_get_key_id
FUNCS += functions/gnutls_x509_crq_get_key_id.short
FUNCS += functions/gnutls_x509_crq_get_key_purpose_oid
FUNCS += functions/gnutls_x509_crq_get_key_purpose_oid.short
FUNCS += functions/gnutls_x509_crq_get_key_rsa_raw
FUNCS += functions/gnutls_x509_crq_get_key_rsa_raw.short
FUNCS += functions/gnutls_x509_crq_get_key_usage
FUNCS += functions/gnutls_x509_crq_get_key_usage.short
FUNCS += functions/gnutls_x509_crq_get_pk_algorithm
FUNCS += functions/gnutls_x509_crq_get_pk_algorithm.short
FUNCS += functions/gnutls_x509_crq_get_pk_oid
FUNCS += functions/gnutls_x509_crq_get_pk_oid.short
FUNCS += functions/gnutls_x509_crq_get_private_key_usage_period
FUNCS += functions/gnutls_x509_crq_get_private_key_usage_period.short
FUNCS += functions/gnutls_x509_crq_get_signature_algorithm
FUNCS += functions/gnutls_x509_crq_get_signature_algorithm.short
FUNCS += functions/gnutls_x509_crq_get_signature_oid
FUNCS += functions/gnutls_x509_crq_get_signature_oid.short
FUNCS += functions/gnutls_x509_crq_get_spki
FUNCS += functions/gnutls_x509_crq_get_spki.short
FUNCS += functions/gnutls_x509_crq_get_subject_alt_name
FUNCS += functions/gnutls_x509_crq_get_subject_alt_name.short
FUNCS += functions/gnutls_x509_crq_get_subject_alt_othername_oid
FUNCS += functions/gnutls_x509_crq_get_subject_alt_othername_oid.short
FUNCS += functions/gnutls_x509_crq_get_tlsfeatures
FUNCS += functions/gnutls_x509_crq_get_tlsfeatures.short
FUNCS += functions/gnutls_x509_crq_get_version
FUNCS += functions/gnutls_x509_crq_get_version.short
FUNCS += functions/gnutls_x509_crq_import
FUNCS += functions/gnutls_x509_crq_import.short
FUNCS += functions/gnutls_x509_crq_init
FUNCS += functions/gnutls_x509_crq_init.short
FUNCS += functions/gnutls_x509_crq_print
FUNCS += functions/gnutls_x509_crq_print.short
FUNCS += functions/gnutls_x509_crq_privkey_sign
FUNCS += functions/gnutls_x509_crq_privkey_sign.short
FUNCS += functions/gnutls_x509_crq_set_attribute_by_oid
FUNCS += functions/gnutls_x509_crq_set_attribute_by_oid.short
FUNCS += functions/gnutls_x509_crq_set_basic_constraints
FUNCS += functions/gnutls_x509_crq_set_basic_constraints.short
FUNCS += functions/gnutls_x509_crq_set_challenge_password
FUNCS += functions/gnutls_x509_crq_set_challenge_password.short
FUNCS += functions/gnutls_x509_crq_set_dn
FUNCS += functions/gnutls_x509_crq_set_dn.short
FUNCS += functions/gnutls_x509_crq_set_dn_by_oid
FUNCS += functions/gnutls_x509_crq_set_dn_by_oid.short
FUNCS += functions/gnutls_x509_crq_set_extension_by_oid
FUNCS += functions/gnutls_x509_crq_set_extension_by_oid.short
FUNCS += functions/gnutls_x509_crq_set_key
FUNCS += functions/gnutls_x509_crq_set_key.short
FUNCS += functions/gnutls_x509_crq_set_key_purpose_oid
FUNCS += functions/gnutls_x509_crq_set_key_purpose_oid.short
FUNCS += functions/gnutls_x509_crq_set_key_rsa_raw
FUNCS += functions/gnutls_x509_crq_set_key_rsa_raw.short
FUNCS += functions/gnutls_x509_crq_set_key_usage
FUNCS += functions/gnutls_x509_crq_set_key_usage.short
FUNCS += functions/gnutls_x509_crq_set_private_key_usage_period
FUNCS += functions/gnutls_x509_crq_set_private_key_usage_period.short
FUNCS += functions/gnutls_x509_crq_set_pubkey
FUNCS += functions/gnutls_x509_crq_set_pubkey.short
FUNCS += functions/gnutls_x509_crq_set_spki
FUNCS += functions/gnutls_x509_crq_set_spki.short
FUNCS += functions/gnutls_x509_crq_set_subject_alt_name
FUNCS += functions/gnutls_x509_crq_set_subject_alt_name.short
FUNCS += functions/gnutls_x509_crq_set_subject_alt_othername
FUNCS += functions/gnutls_x509_crq_set_subject_alt_othername.short
FUNCS += functions/gnutls_x509_crq_set_tlsfeatures
FUNCS += functions/gnutls_x509_crq_set_tlsfeatures.short
FUNCS += functions/gnutls_x509_crq_set_version
FUNCS += functions/gnutls_x509_crq_set_version.short
FUNCS += functions/gnutls_x509_crq_sign
FUNCS += functions/gnutls_x509_crq_sign.short
FUNCS += functions/gnutls_x509_crq_sign2
FUNCS += functions/gnutls_x509_crq_sign2.short
FUNCS += functions/gnutls_x509_crq_verify
FUNCS += functions/gnutls_x509_crq_verify.short
FUNCS += functions/gnutls_x509_crt_check_email
FUNCS += functions/gnutls_x509_crt_check_email.short
FUNCS += functions/gnutls_x509_crt_check_hostname
FUNCS += functions/gnutls_x509_crt_check_hostname.short
FUNCS += functions/gnutls_x509_crt_check_hostname2
FUNCS += functions/gnutls_x509_crt_check_hostname2.short
FUNCS += functions/gnutls_x509_crt_check_ip
FUNCS += functions/gnutls_x509_crt_check_ip.short
FUNCS += functions/gnutls_x509_crt_check_issuer
FUNCS += functions/gnutls_x509_crt_check_issuer.short
FUNCS += functions/gnutls_x509_crt_check_key_purpose
FUNCS += functions/gnutls_x509_crt_check_key_purpose.short
FUNCS += functions/gnutls_x509_crt_check_revocation
FUNCS += functions/gnutls_x509_crt_check_revocation.short
FUNCS += functions/gnutls_x509_crt_cpy_crl_dist_points
FUNCS += functions/gnutls_x509_crt_cpy_crl_dist_points.short
FUNCS += functions/gnutls_x509_crt_deinit
FUNCS += functions/gnutls_x509_crt_deinit.short
FUNCS += functions/gnutls_x509_crt_equals
FUNCS += functions/gnutls_x509_crt_equals.short
FUNCS += functions/gnutls_x509_crt_equals2
FUNCS += functions/gnutls_x509_crt_equals2.short
FUNCS += functions/gnutls_x509_crt_export
FUNCS += functions/gnutls_x509_crt_export.short
FUNCS += functions/gnutls_x509_crt_export2
FUNCS += functions/gnutls_x509_crt_export2.short
FUNCS += functions/gnutls_x509_crt_get_activation_time
FUNCS += functions/gnutls_x509_crt_get_activation_time.short
FUNCS += functions/gnutls_x509_crt_get_authority_info_access
FUNCS += functions/gnutls_x509_crt_get_authority_info_access.short
FUNCS += functions/gnutls_x509_crt_get_authority_key_gn_serial
FUNCS += functions/gnutls_x509_crt_get_authority_key_gn_serial.short
FUNCS += functions/gnutls_x509_crt_get_authority_key_id
FUNCS += functions/gnutls_x509_crt_get_authority_key_id.short
FUNCS += functions/gnutls_x509_crt_get_basic_constraints
FUNCS += functions/gnutls_x509_crt_get_basic_constraints.short
FUNCS += functions/gnutls_x509_crt_get_ca_status
FUNCS += functions/gnutls_x509_crt_get_ca_status.short
FUNCS += functions/gnutls_x509_crt_get_crl_dist_points
FUNCS += functions/gnutls_x509_crt_get_crl_dist_points.short
FUNCS += functions/gnutls_x509_crt_get_dn
FUNCS += functions/gnutls_x509_crt_get_dn.short
FUNCS += functions/gnutls_x509_crt_get_dn2
FUNCS += functions/gnutls_x509_crt_get_dn2.short
FUNCS += functions/gnutls_x509_crt_get_dn3
FUNCS += functions/gnutls_x509_crt_get_dn3.short
FUNCS += functions/gnutls_x509_crt_get_dn_by_oid
FUNCS += functions/gnutls_x509_crt_get_dn_by_oid.short
FUNCS += functions/gnutls_x509_crt_get_dn_oid
FUNCS += functions/gnutls_x509_crt_get_dn_oid.short
FUNCS += functions/gnutls_x509_crt_get_expiration_time
FUNCS += functions/gnutls_x509_crt_get_expiration_time.short
FUNCS += functions/gnutls_x509_crt_get_extension_by_oid
FUNCS += functions/gnutls_x509_crt_get_extension_by_oid.short
FUNCS += functions/gnutls_x509_crt_get_extension_by_oid2
FUNCS += functions/gnutls_x509_crt_get_extension_by_oid2.short
FUNCS += functions/gnutls_x509_crt_get_extension_data
FUNCS += functions/gnutls_x509_crt_get_extension_data.short
FUNCS += functions/gnutls_x509_crt_get_extension_data2
FUNCS += functions/gnutls_x509_crt_get_extension_data2.short
FUNCS += functions/gnutls_x509_crt_get_extension_info
FUNCS += functions/gnutls_x509_crt_get_extension_info.short
FUNCS += functions/gnutls_x509_crt_get_extension_oid
FUNCS += functions/gnutls_x509_crt_get_extension_oid.short
FUNCS += functions/gnutls_x509_crt_get_fingerprint
FUNCS += functions/gnutls_x509_crt_get_fingerprint.short
FUNCS += functions/gnutls_x509_crt_get_inhibit_anypolicy
FUNCS += functions/gnutls_x509_crt_get_inhibit_anypolicy.short
FUNCS += functions/gnutls_x509_crt_get_issuer
FUNCS += functions/gnutls_x509_crt_get_issuer.short
FUNCS += functions/gnutls_x509_crt_get_issuer_alt_name
FUNCS += functions/gnutls_x509_crt_get_issuer_alt_name.short
FUNCS += functions/gnutls_x509_crt_get_issuer_alt_name2
FUNCS += functions/gnutls_x509_crt_get_issuer_alt_name2.short
FUNCS += functions/gnutls_x509_crt_get_issuer_alt_othername_oid
FUNCS += functions/gnutls_x509_crt_get_issuer_alt_othername_oid.short
FUNCS += functions/gnutls_x509_crt_get_issuer_dn
FUNCS += functions/gnutls_x509_crt_get_issuer_dn.short
FUNCS += functions/gnutls_x509_crt_get_issuer_dn2
FUNCS += functions/gnutls_x509_crt_get_issuer_dn2.short
FUNCS += functions/gnutls_x509_crt_get_issuer_dn3
FUNCS += functions/gnutls_x509_crt_get_issuer_dn3.short
FUNCS += functions/gnutls_x509_crt_get_issuer_dn_by_oid
FUNCS += functions/gnutls_x509_crt_get_issuer_dn_by_oid.short
FUNCS += functions/gnutls_x509_crt_get_issuer_dn_oid
FUNCS += functions/gnutls_x509_crt_get_issuer_dn_oid.short
FUNCS += functions/gnutls_x509_crt_get_issuer_unique_id
FUNCS += functions/gnutls_x509_crt_get_issuer_unique_id.short
FUNCS += functions/gnutls_x509_crt_get_key_id
FUNCS += functions/gnutls_x509_crt_get_key_id.short
FUNCS += functions/gnutls_x509_crt_get_key_purpose_oid
FUNCS += functions/gnutls_x509_crt_get_key_purpose_oid.short
FUNCS += functions/gnutls_x509_crt_get_key_usage
FUNCS += functions/gnutls_x509_crt_get_key_usage.short
FUNCS += functions/gnutls_x509_crt_get_name_constraints
FUNCS += functions/gnutls_x509_crt_get_name_constraints.short
FUNCS += functions/gnutls_x509_crt_get_pk_algorithm
FUNCS += functions/gnutls_x509_crt_get_pk_algorithm.short
FUNCS += functions/gnutls_x509_crt_get_pk_dsa_raw
FUNCS += functions/gnutls_x509_crt_get_pk_dsa_raw.short
FUNCS += functions/gnutls_x509_crt_get_pk_ecc_raw
FUNCS += functions/gnutls_x509_crt_get_pk_ecc_raw.short
FUNCS += functions/gnutls_x509_crt_get_pk_gost_raw
FUNCS += functions/gnutls_x509_crt_get_pk_gost_raw.short
FUNCS += functions/gnutls_x509_crt_get_pk_oid
FUNCS += functions/gnutls_x509_crt_get_pk_oid.short
FUNCS += functions/gnutls_x509_crt_get_pk_rsa_raw
FUNCS += functions/gnutls_x509_crt_get_pk_rsa_raw.short
FUNCS += functions/gnutls_x509_crt_get_policy
FUNCS += functions/gnutls_x509_crt_get_policy.short
FUNCS += functions/gnutls_x509_crt_get_preferred_hash_algorithm
FUNCS += functions/gnutls_x509_crt_get_preferred_hash_algorithm.short
FUNCS += functions/gnutls_x509_crt_get_private_key_usage_period
FUNCS += functions/gnutls_x509_crt_get_private_key_usage_period.short
FUNCS += functions/gnutls_x509_crt_get_proxy
FUNCS += functions/gnutls_x509_crt_get_proxy.short
FUNCS += functions/gnutls_x509_crt_get_raw_dn
FUNCS += functions/gnutls_x509_crt_get_raw_dn.short
FUNCS += functions/gnutls_x509_crt_get_raw_issuer_dn
FUNCS += functions/gnutls_x509_crt_get_raw_issuer_dn.short
FUNCS += functions/gnutls_x509_crt_get_serial
FUNCS += functions/gnutls_x509_crt_get_serial.short
FUNCS += functions/gnutls_x509_crt_get_signature
FUNCS += functions/gnutls_x509_crt_get_signature.short
FUNCS += functions/gnutls_x509_crt_get_signature_algorithm
FUNCS += functions/gnutls_x509_crt_get_signature_algorithm.short
FUNCS += functions/gnutls_x509_crt_get_signature_oid
FUNCS += functions/gnutls_x509_crt_get_signature_oid.short
FUNCS += functions/gnutls_x509_crt_get_spki
FUNCS += functions/gnutls_x509_crt_get_spki.short
FUNCS += functions/gnutls_x509_crt_get_subject
FUNCS += functions/gnutls_x509_crt_get_subject.short
FUNCS += functions/gnutls_x509_crt_get_subject_alt_name
FUNCS += functions/gnutls_x509_crt_get_subject_alt_name.short
FUNCS += functions/gnutls_x509_crt_get_subject_alt_name2
FUNCS += functions/gnutls_x509_crt_get_subject_alt_name2.short
FUNCS += functions/gnutls_x509_crt_get_subject_alt_othername_oid
FUNCS += functions/gnutls_x509_crt_get_subject_alt_othername_oid.short
FUNCS += functions/gnutls_x509_crt_get_subject_key_id
FUNCS += functions/gnutls_x509_crt_get_subject_key_id.short
FUNCS += functions/gnutls_x509_crt_get_subject_unique_id
FUNCS += functions/gnutls_x509_crt_get_subject_unique_id.short
FUNCS += functions/gnutls_x509_crt_get_tlsfeatures
FUNCS += functions/gnutls_x509_crt_get_tlsfeatures.short
FUNCS += functions/gnutls_x509_crt_get_version
FUNCS += functions/gnutls_x509_crt_get_version.short
FUNCS += functions/gnutls_x509_crt_import
FUNCS += functions/gnutls_x509_crt_import.short
FUNCS += functions/gnutls_x509_crt_import_pkcs11
FUNCS += functions/gnutls_x509_crt_import_pkcs11.short
FUNCS += functions/gnutls_x509_crt_import_url
FUNCS += functions/gnutls_x509_crt_import_url.short
FUNCS += functions/gnutls_x509_crt_init
FUNCS += functions/gnutls_x509_crt_init.short
FUNCS += functions/gnutls_x509_crt_list_import
FUNCS += functions/gnutls_x509_crt_list_import.short
FUNCS += functions/gnutls_x509_crt_list_import2
FUNCS += functions/gnutls_x509_crt_list_import2.short
FUNCS += functions/gnutls_x509_crt_list_import_pkcs11
FUNCS += functions/gnutls_x509_crt_list_import_pkcs11.short
FUNCS += functions/gnutls_x509_crt_list_import_url
FUNCS += functions/gnutls_x509_crt_list_import_url.short
FUNCS += functions/gnutls_x509_crt_list_verify
FUNCS += functions/gnutls_x509_crt_list_verify.short
FUNCS += functions/gnutls_x509_crt_print
FUNCS += functions/gnutls_x509_crt_print.short
FUNCS += functions/gnutls_x509_crt_privkey_sign
FUNCS += functions/gnutls_x509_crt_privkey_sign.short
FUNCS += functions/gnutls_x509_crt_set_activation_time
FUNCS += functions/gnutls_x509_crt_set_activation_time.short
FUNCS += functions/gnutls_x509_crt_set_authority_info_access
FUNCS += functions/gnutls_x509_crt_set_authority_info_access.short
FUNCS += functions/gnutls_x509_crt_set_authority_key_id
FUNCS += functions/gnutls_x509_crt_set_authority_key_id.short
FUNCS += functions/gnutls_x509_crt_set_basic_constraints
FUNCS += functions/gnutls_x509_crt_set_basic_constraints.short
FUNCS += functions/gnutls_x509_crt_set_ca_status
FUNCS += functions/gnutls_x509_crt_set_ca_status.short
FUNCS += functions/gnutls_x509_crt_set_crl_dist_points
FUNCS += functions/gnutls_x509_crt_set_crl_dist_points.short
FUNCS += functions/gnutls_x509_crt_set_crl_dist_points2
FUNCS += functions/gnutls_x509_crt_set_crl_dist_points2.short
FUNCS += functions/gnutls_x509_crt_set_crq
FUNCS += functions/gnutls_x509_crt_set_crq.short
FUNCS += functions/gnutls_x509_crt_set_crq_extension_by_oid
FUNCS += functions/gnutls_x509_crt_set_crq_extension_by_oid.short
FUNCS += functions/gnutls_x509_crt_set_crq_extensions
FUNCS += functions/gnutls_x509_crt_set_crq_extensions.short
FUNCS += functions/gnutls_x509_crt_set_dn
FUNCS += functions/gnutls_x509_crt_set_dn.short
FUNCS += functions/gnutls_x509_crt_set_dn_by_oid
FUNCS += functions/gnutls_x509_crt_set_dn_by_oid.short
FUNCS += functions/gnutls_x509_crt_set_expiration_time
FUNCS += functions/gnutls_x509_crt_set_expiration_time.short
FUNCS += functions/gnutls_x509_crt_set_extension_by_oid
FUNCS += functions/gnutls_x509_crt_set_extension_by_oid.short
FUNCS += functions/gnutls_x509_crt_set_flags
FUNCS += functions/gnutls_x509_crt_set_flags.short
FUNCS += functions/gnutls_x509_crt_set_inhibit_anypolicy
FUNCS += functions/gnutls_x509_crt_set_inhibit_anypolicy.short
FUNCS += functions/gnutls_x509_crt_set_issuer_alt_name
FUNCS += functions/gnutls_x509_crt_set_issuer_alt_name.short
FUNCS += functions/gnutls_x509_crt_set_issuer_alt_othername
FUNCS += functions/gnutls_x509_crt_set_issuer_alt_othername.short
FUNCS += functions/gnutls_x509_crt_set_issuer_dn
FUNCS += functions/gnutls_x509_crt_set_issuer_dn.short
FUNCS += functions/gnutls_x509_crt_set_issuer_dn_by_oid
FUNCS += functions/gnutls_x509_crt_set_issuer_dn_by_oid.short
FUNCS += functions/gnutls_x509_crt_set_issuer_unique_id
FUNCS += functions/gnutls_x509_crt_set_issuer_unique_id.short
FUNCS += functions/gnutls_x509_crt_set_key
FUNCS += functions/gnutls_x509_crt_set_key.short
FUNCS += functions/gnutls_x509_crt_set_key_purpose_oid
FUNCS += functions/gnutls_x509_crt_set_key_purpose_oid.short
FUNCS += functions/gnutls_x509_crt_set_key_usage
FUNCS += functions/gnutls_x509_crt_set_key_usage.short
FUNCS += functions/gnutls_x509_crt_set_name_constraints
FUNCS += functions/gnutls_x509_crt_set_name_constraints.short
FUNCS += functions/gnutls_x509_crt_set_pin_function
FUNCS += functions/gnutls_x509_crt_set_pin_function.short
FUNCS += functions/gnutls_x509_crt_set_policy
FUNCS += functions/gnutls_x509_crt_set_policy.short
FUNCS += functions/gnutls_x509_crt_set_private_key_usage_period
FUNCS += functions/gnutls_x509_crt_set_private_key_usage_period.short
FUNCS += functions/gnutls_x509_crt_set_proxy
FUNCS += functions/gnutls_x509_crt_set_proxy.short
FUNCS += functions/gnutls_x509_crt_set_proxy_dn
FUNCS += functions/gnutls_x509_crt_set_proxy_dn.short
FUNCS += functions/gnutls_x509_crt_set_pubkey
FUNCS += functions/gnutls_x509_crt_set_pubkey.short
FUNCS += functions/gnutls_x509_crt_set_serial
FUNCS += functions/gnutls_x509_crt_set_serial.short
FUNCS += functions/gnutls_x509_crt_set_spki
FUNCS += functions/gnutls_x509_crt_set_spki.short
FUNCS += functions/gnutls_x509_crt_set_subject_alternative_name
FUNCS += functions/gnutls_x509_crt_set_subject_alternative_name.short
FUNCS += functions/gnutls_x509_crt_set_subject_alt_name
FUNCS += functions/gnutls_x509_crt_set_subject_alt_name.short
FUNCS += functions/gnutls_x509_crt_set_subject_alt_othername
FUNCS += functions/gnutls_x509_crt_set_subject_alt_othername.short
FUNCS += functions/gnutls_x509_crt_set_subject_key_id
FUNCS += functions/gnutls_x509_crt_set_subject_key_id.short
FUNCS += functions/gnutls_x509_crt_set_subject_unique_id
FUNCS += functions/gnutls_x509_crt_set_subject_unique_id.short
FUNCS += functions/gnutls_x509_crt_set_tlsfeatures
FUNCS += functions/gnutls_x509_crt_set_tlsfeatures.short
FUNCS += functions/gnutls_x509_crt_set_version
FUNCS += functions/gnutls_x509_crt_set_version.short
FUNCS += functions/gnutls_x509_crt_sign
FUNCS += functions/gnutls_x509_crt_sign.short
FUNCS += functions/gnutls_x509_crt_sign2
FUNCS += functions/gnutls_x509_crt_sign2.short
FUNCS += functions/gnutls_x509_crt_verify
FUNCS += functions/gnutls_x509_crt_verify.short
FUNCS += functions/gnutls_x509_crt_verify_data2
FUNCS += functions/gnutls_x509_crt_verify_data2.short
FUNCS += functions/gnutls_x509_dn_deinit
FUNCS += functions/gnutls_x509_dn_deinit.short
FUNCS += functions/gnutls_x509_dn_export
FUNCS += functions/gnutls_x509_dn_export.short
FUNCS += functions/gnutls_x509_dn_export2
FUNCS += functions/gnutls_x509_dn_export2.short
FUNCS += functions/gnutls_x509_dn_get_rdn_ava
FUNCS += functions/gnutls_x509_dn_get_rdn_ava.short
FUNCS += functions/gnutls_x509_dn_get_str
FUNCS += functions/gnutls_x509_dn_get_str.short
FUNCS += functions/gnutls_x509_dn_get_str2
FUNCS += functions/gnutls_x509_dn_get_str2.short
FUNCS += functions/gnutls_x509_dn_import
FUNCS += functions/gnutls_x509_dn_import.short
FUNCS += functions/gnutls_x509_dn_init
FUNCS += functions/gnutls_x509_dn_init.short
FUNCS += functions/gnutls_x509_dn_oid_known
FUNCS += functions/gnutls_x509_dn_oid_known.short
FUNCS += functions/gnutls_x509_dn_oid_name
FUNCS += functions/gnutls_x509_dn_oid_name.short
FUNCS += functions/gnutls_x509_dn_set_str
FUNCS += functions/gnutls_x509_dn_set_str.short
FUNCS += functions/gnutls_x509_ext_deinit
FUNCS += functions/gnutls_x509_ext_deinit.short
FUNCS += functions/gnutls_x509_ext_export_aia
FUNCS += functions/gnutls_x509_ext_export_aia.short
FUNCS += functions/gnutls_x509_ext_export_authority_key_id
FUNCS += functions/gnutls_x509_ext_export_authority_key_id.short
FUNCS += functions/gnutls_x509_ext_export_basic_constraints
FUNCS += functions/gnutls_x509_ext_export_basic_constraints.short
FUNCS += functions/gnutls_x509_ext_export_crl_dist_points
FUNCS += functions/gnutls_x509_ext_export_crl_dist_points.short
FUNCS += functions/gnutls_x509_ext_export_inhibit_anypolicy
FUNCS += functions/gnutls_x509_ext_export_inhibit_anypolicy.short
FUNCS += functions/gnutls_x509_ext_export_key_purposes
FUNCS += functions/gnutls_x509_ext_export_key_purposes.short
FUNCS += functions/gnutls_x509_ext_export_key_usage
FUNCS += functions/gnutls_x509_ext_export_key_usage.short
FUNCS += functions/gnutls_x509_ext_export_name_constraints
FUNCS += functions/gnutls_x509_ext_export_name_constraints.short
FUNCS += functions/gnutls_x509_ext_export_policies
FUNCS += functions/gnutls_x509_ext_export_policies.short
FUNCS += functions/gnutls_x509_ext_export_private_key_usage_period
FUNCS += functions/gnutls_x509_ext_export_private_key_usage_period.short
FUNCS += functions/gnutls_x509_ext_export_proxy
FUNCS += functions/gnutls_x509_ext_export_proxy.short
FUNCS += functions/gnutls_x509_ext_export_subject_alt_names
FUNCS += functions/gnutls_x509_ext_export_subject_alt_names.short
FUNCS += functions/gnutls_x509_ext_export_subject_key_id
FUNCS += functions/gnutls_x509_ext_export_subject_key_id.short
FUNCS += functions/gnutls_x509_ext_export_tlsfeatures
FUNCS += functions/gnutls_x509_ext_export_tlsfeatures.short
FUNCS += functions/gnutls_x509_ext_import_aia
FUNCS += functions/gnutls_x509_ext_import_aia.short
FUNCS += functions/gnutls_x509_ext_import_authority_key_id
FUNCS += functions/gnutls_x509_ext_import_authority_key_id.short
FUNCS += functions/gnutls_x509_ext_import_basic_constraints
FUNCS += functions/gnutls_x509_ext_import_basic_constraints.short
FUNCS += functions/gnutls_x509_ext_import_crl_dist_points
FUNCS += functions/gnutls_x509_ext_import_crl_dist_points.short
FUNCS += functions/gnutls_x509_ext_import_inhibit_anypolicy
FUNCS += functions/gnutls_x509_ext_import_inhibit_anypolicy.short
FUNCS += functions/gnutls_x509_ext_import_key_purposes
FUNCS += functions/gnutls_x509_ext_import_key_purposes.short
FUNCS += functions/gnutls_x509_ext_import_key_usage
FUNCS += functions/gnutls_x509_ext_import_key_usage.short
FUNCS += functions/gnutls_x509_ext_import_name_constraints
FUNCS += functions/gnutls_x509_ext_import_name_constraints.short
FUNCS += functions/gnutls_x509_ext_import_policies
FUNCS += functions/gnutls_x509_ext_import_policies.short
FUNCS += functions/gnutls_x509_ext_import_private_key_usage_period
FUNCS += functions/gnutls_x509_ext_import_private_key_usage_period.short
FUNCS += functions/gnutls_x509_ext_import_proxy
FUNCS += functions/gnutls_x509_ext_import_proxy.short
FUNCS += functions/gnutls_x509_ext_import_subject_alt_names
FUNCS += functions/gnutls_x509_ext_import_subject_alt_names.short
FUNCS += functions/gnutls_x509_ext_import_subject_key_id
FUNCS += functions/gnutls_x509_ext_import_subject_key_id.short
FUNCS += functions/gnutls_x509_ext_import_tlsfeatures
FUNCS += functions/gnutls_x509_ext_import_tlsfeatures.short
FUNCS += functions/gnutls_x509_ext_print
FUNCS += functions/gnutls_x509_ext_print.short
FUNCS += functions/gnutls_x509_key_purpose_deinit
FUNCS += functions/gnutls_x509_key_purpose_deinit.short
FUNCS += functions/gnutls_x509_key_purpose_get
FUNCS += functions/gnutls_x509_key_purpose_get.short
FUNCS += functions/gnutls_x509_key_purpose_init
FUNCS += functions/gnutls_x509_key_purpose_init.short
FUNCS += functions/gnutls_x509_key_purpose_set
FUNCS += functions/gnutls_x509_key_purpose_set.short
FUNCS += functions/gnutls_x509_name_constraints_add_excluded
FUNCS += functions/gnutls_x509_name_constraints_add_excluded.short
FUNCS += functions/gnutls_x509_name_constraints_add_permitted
FUNCS += functions/gnutls_x509_name_constraints_add_permitted.short
FUNCS += functions/gnutls_x509_name_constraints_check
FUNCS += functions/gnutls_x509_name_constraints_check.short
FUNCS += functions/gnutls_x509_name_constraints_check_crt
FUNCS += functions/gnutls_x509_name_constraints_check_crt.short
FUNCS += functions/gnutls_x509_name_constraints_deinit
FUNCS += functions/gnutls_x509_name_constraints_deinit.short
FUNCS += functions/gnutls_x509_name_constraints_get_excluded
FUNCS += functions/gnutls_x509_name_constraints_get_excluded.short
FUNCS += functions/gnutls_x509_name_constraints_get_permitted
FUNCS += functions/gnutls_x509_name_constraints_get_permitted.short
FUNCS += functions/gnutls_x509_name_constraints_init
FUNCS += functions/gnutls_x509_name_constraints_init.short
FUNCS += functions/gnutls_x509_othername_to_virtual
FUNCS += functions/gnutls_x509_othername_to_virtual.short
FUNCS += functions/gnutls_x509_policies_deinit
FUNCS += functions/gnutls_x509_policies_deinit.short
FUNCS += functions/gnutls_x509_policies_get
FUNCS += functions/gnutls_x509_policies_get.short
FUNCS += functions/gnutls_x509_policies_init
FUNCS += functions/gnutls_x509_policies_init.short
FUNCS += functions/gnutls_x509_policies_set
FUNCS += functions/gnutls_x509_policies_set.short
FUNCS += functions/gnutls_x509_policy_release
FUNCS += functions/gnutls_x509_policy_release.short
FUNCS += functions/gnutls_x509_privkey_cpy
FUNCS += functions/gnutls_x509_privkey_cpy.short
FUNCS += functions/gnutls_x509_privkey_deinit
FUNCS += functions/gnutls_x509_privkey_deinit.short
FUNCS += functions/gnutls_x509_privkey_export
FUNCS += functions/gnutls_x509_privkey_export.short
FUNCS += functions/gnutls_x509_privkey_export2
FUNCS += functions/gnutls_x509_privkey_export2.short
FUNCS += functions/gnutls_x509_privkey_export2_pkcs8
FUNCS += functions/gnutls_x509_privkey_export2_pkcs8.short
FUNCS += functions/gnutls_x509_privkey_export_dsa_raw
FUNCS += functions/gnutls_x509_privkey_export_dsa_raw.short
FUNCS += functions/gnutls_x509_privkey_export_ecc_raw
FUNCS += functions/gnutls_x509_privkey_export_ecc_raw.short
FUNCS += functions/gnutls_x509_privkey_export_gost_raw
FUNCS += functions/gnutls_x509_privkey_export_gost_raw.short
FUNCS += functions/gnutls_x509_privkey_export_pkcs8
FUNCS += functions/gnutls_x509_privkey_export_pkcs8.short
FUNCS += functions/gnutls_x509_privkey_export_rsa_raw
FUNCS += functions/gnutls_x509_privkey_export_rsa_raw.short
FUNCS += functions/gnutls_x509_privkey_export_rsa_raw2
FUNCS += functions/gnutls_x509_privkey_export_rsa_raw2.short
FUNCS += functions/gnutls_x509_privkey_fix
FUNCS += functions/gnutls_x509_privkey_fix.short
FUNCS += functions/gnutls_x509_privkey_generate
FUNCS += functions/gnutls_x509_privkey_generate.short
FUNCS += functions/gnutls_x509_privkey_generate2
FUNCS += functions/gnutls_x509_privkey_generate2.short
FUNCS += functions/gnutls_x509_privkey_get_key_id
FUNCS += functions/gnutls_x509_privkey_get_key_id.short
FUNCS += functions/gnutls_x509_privkey_get_pk_algorithm
FUNCS += functions/gnutls_x509_privkey_get_pk_algorithm.short
FUNCS += functions/gnutls_x509_privkey_get_pk_algorithm2
FUNCS += functions/gnutls_x509_privkey_get_pk_algorithm2.short
FUNCS += functions/gnutls_x509_privkey_get_seed
FUNCS += functions/gnutls_x509_privkey_get_seed.short
FUNCS += functions/gnutls_x509_privkey_get_spki
FUNCS += functions/gnutls_x509_privkey_get_spki.short
FUNCS += functions/gnutls_x509_privkey_import
FUNCS += functions/gnutls_x509_privkey_import.short
FUNCS += functions/gnutls_x509_privkey_import2
FUNCS += functions/gnutls_x509_privkey_import2.short
FUNCS += functions/gnutls_x509_privkey_import_dsa_raw
FUNCS += functions/gnutls_x509_privkey_import_dsa_raw.short
FUNCS += functions/gnutls_x509_privkey_import_ecc_raw
FUNCS += functions/gnutls_x509_privkey_import_ecc_raw.short
FUNCS += functions/gnutls_x509_privkey_import_gost_raw
FUNCS += functions/gnutls_x509_privkey_import_gost_raw.short
FUNCS += functions/gnutls_x509_privkey_import_openssl
FUNCS += functions/gnutls_x509_privkey_import_openssl.short
FUNCS += functions/gnutls_x509_privkey_import_pkcs8
FUNCS += functions/gnutls_x509_privkey_import_pkcs8.short
FUNCS += functions/gnutls_x509_privkey_import_rsa_raw
FUNCS += functions/gnutls_x509_privkey_import_rsa_raw.short
FUNCS += functions/gnutls_x509_privkey_import_rsa_raw2
FUNCS += functions/gnutls_x509_privkey_import_rsa_raw2.short
FUNCS += functions/gnutls_x509_privkey_init
FUNCS += functions/gnutls_x509_privkey_init.short
FUNCS += functions/gnutls_x509_privkey_sec_param
FUNCS += functions/gnutls_x509_privkey_sec_param.short
FUNCS += functions/gnutls_x509_privkey_set_flags
FUNCS += functions/gnutls_x509_privkey_set_flags.short
FUNCS += functions/gnutls_x509_privkey_set_pin_function
FUNCS += functions/gnutls_x509_privkey_set_pin_function.short
FUNCS += functions/gnutls_x509_privkey_set_spki
FUNCS += functions/gnutls_x509_privkey_set_spki.short
FUNCS += functions/gnutls_x509_privkey_sign_data
FUNCS += functions/gnutls_x509_privkey_sign_data.short
FUNCS += functions/gnutls_x509_privkey_sign_hash
FUNCS += functions/gnutls_x509_privkey_sign_hash.short
FUNCS += functions/gnutls_x509_privkey_verify_params
FUNCS += functions/gnutls_x509_privkey_verify_params.short
FUNCS += functions/gnutls_x509_privkey_verify_seed
FUNCS += functions/gnutls_x509_privkey_verify_seed.short
FUNCS += functions/gnutls_x509_rdn_get
FUNCS += functions/gnutls_x509_rdn_get.short
FUNCS += functions/gnutls_x509_rdn_get2
FUNCS += functions/gnutls_x509_rdn_get2.short
FUNCS += functions/gnutls_x509_rdn_get_by_oid
FUNCS += functions/gnutls_x509_rdn_get_by_oid.short
FUNCS += functions/gnutls_x509_rdn_get_oid
FUNCS += functions/gnutls_x509_rdn_get_oid.short
FUNCS += functions/gnutls_x509_spki_deinit
FUNCS += functions/gnutls_x509_spki_deinit.short
FUNCS += functions/gnutls_x509_spki_get_rsa_pss_params
FUNCS += functions/gnutls_x509_spki_get_rsa_pss_params.short
FUNCS += functions/gnutls_x509_spki_init
FUNCS += functions/gnutls_x509_spki_init.short
FUNCS += functions/gnutls_x509_spki_set_rsa_pss_params
FUNCS += functions/gnutls_x509_spki_set_rsa_pss_params.short
FUNCS += functions/gnutls_x509_tlsfeatures_add
FUNCS += functions/gnutls_x509_tlsfeatures_add.short
FUNCS += functions/gnutls_x509_tlsfeatures_check_crt
FUNCS += functions/gnutls_x509_tlsfeatures_check_crt.short
FUNCS += functions/gnutls_x509_tlsfeatures_deinit
FUNCS += functions/gnutls_x509_tlsfeatures_deinit.short
FUNCS += functions/gnutls_x509_tlsfeatures_get
FUNCS += functions/gnutls_x509_tlsfeatures_get.short
FUNCS += functions/gnutls_x509_tlsfeatures_init
FUNCS += functions/gnutls_x509_tlsfeatures_init.short
FUNCS += functions/gnutls_x509_trust_list_add_cas
FUNCS += functions/gnutls_x509_trust_list_add_cas.short
FUNCS += functions/gnutls_x509_trust_list_add_crls
FUNCS += functions/gnutls_x509_trust_list_add_crls.short
FUNCS += functions/gnutls_x509_trust_list_add_named_crt
FUNCS += functions/gnutls_x509_trust_list_add_named_crt.short
FUNCS += functions/gnutls_x509_trust_list_add_system_trust
FUNCS += functions/gnutls_x509_trust_list_add_system_trust.short
FUNCS += functions/gnutls_x509_trust_list_add_trust_dir
FUNCS += functions/gnutls_x509_trust_list_add_trust_dir.short
FUNCS += functions/gnutls_x509_trust_list_add_trust_file
FUNCS += functions/gnutls_x509_trust_list_add_trust_file.short
FUNCS += functions/gnutls_x509_trust_list_add_trust_mem
FUNCS += functions/gnutls_x509_trust_list_add_trust_mem.short
FUNCS += functions/gnutls_x509_trust_list_deinit
FUNCS += functions/gnutls_x509_trust_list_deinit.short
FUNCS += functions/gnutls_x509_trust_list_get_issuer
FUNCS += functions/gnutls_x509_trust_list_get_issuer.short
FUNCS += functions/gnutls_x509_trust_list_get_issuer_by_dn
FUNCS += functions/gnutls_x509_trust_list_get_issuer_by_dn.short
FUNCS += functions/gnutls_x509_trust_list_get_issuer_by_subject_key_id
FUNCS += functions/gnutls_x509_trust_list_get_issuer_by_subject_key_id.short
FUNCS += functions/gnutls_x509_trust_list_get_ptr
FUNCS += functions/gnutls_x509_trust_list_get_ptr.short
FUNCS += functions/gnutls_x509_trust_list_init
FUNCS += functions/gnutls_x509_trust_list_init.short
FUNCS += functions/gnutls_x509_trust_list_iter_deinit
FUNCS += functions/gnutls_x509_trust_list_iter_deinit.short
FUNCS += functions/gnutls_x509_trust_list_iter_get_ca
FUNCS += functions/gnutls_x509_trust_list_iter_get_ca.short
FUNCS += functions/gnutls_x509_trust_list_remove_cas
FUNCS += functions/gnutls_x509_trust_list_remove_cas.short
FUNCS += functions/gnutls_x509_trust_list_remove_trust_file
FUNCS += functions/gnutls_x509_trust_list_remove_trust_file.short
FUNCS += functions/gnutls_x509_trust_list_remove_trust_mem
FUNCS += functions/gnutls_x509_trust_list_remove_trust_mem.short
FUNCS += functions/gnutls_x509_trust_list_set_getissuer_function
FUNCS += functions/gnutls_x509_trust_list_set_getissuer_function.short
FUNCS += functions/gnutls_x509_trust_list_set_ptr
FUNCS += functions/gnutls_x509_trust_list_set_ptr.short
FUNCS += functions/gnutls_x509_trust_list_verify_crt
FUNCS += functions/gnutls_x509_trust_list_verify_crt.short
FUNCS += functions/gnutls_x509_trust_list_verify_crt2
FUNCS += functions/gnutls_x509_trust_list_verify_crt2.short
FUNCS += functions/gnutls_x509_trust_list_verify_named_crt
FUNCS += functions/gnutls_x509_trust_list_verify_named_crt.short
|