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 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228
|
<?xml version="1.0"?>
<doc>
<assembly>
<name>KeePassLib</name>
</assembly>
<members>
<member name="T:KeePassLib.Utility.UrlUtil">
<summary>
A class containing various static path utility helper methods (like
stripping extension from a file, etc.).
</summary>
</member>
<member name="M:KeePassLib.Utility.UrlUtil.GetFileDirectory(System.String,System.Boolean,System.Boolean)">
<summary>
Get the directory (path) of a file name. The returned string may be
terminated by a directory separator character. Example:
passing <c>C:\\My Documents\\My File.kdb</c> in <paramref name="strFile" />
and <c>true</c> to <paramref name="bAppendTerminatingChar"/>
would produce this string: <c>C:\\My Documents\\</c>.
</summary>
<param name="strFile">Full path of a file.</param>
<param name="bAppendTerminatingChar">Append a terminating directory separator
character to the returned path.</param>
<param name="bEnsureValidDirSpec">If <c>true</c>, the returned path
is guaranteed to be a valid directory path (for example <c>X:\\</c> instead
of <c>X:</c>, overriding <paramref name="bAppendTerminatingChar" />).
This should only be set to <c>true</c>, if the returned path is directly
passed to some directory API.</param>
<returns>Directory of the file.</returns>
</member>
<member name="M:KeePassLib.Utility.UrlUtil.GetFileName(System.String)">
<summary>
Gets the file name of the specified file (full path). Example:
if <paramref name="strPath" /> is <c>C:\\My Documents\\My File.kdb</c>
the returned string is <c>My File.kdb</c>.
</summary>
<param name="strPath">Full path of a file.</param>
<returns>File name of the specified file. The return value is
an empty string (<c>""</c>) if the input parameter is <c>null</c>.</returns>
</member>
<member name="M:KeePassLib.Utility.UrlUtil.StripExtension(System.String)">
<summary>
Strip the extension of a file.
</summary>
<param name="strPath">Full path of a file with extension.</param>
<returns>File name without extension.</returns>
</member>
<member name="M:KeePassLib.Utility.UrlUtil.GetExtension(System.String)">
<summary>
Get the extension of a file.
</summary>
<param name="strPath">Full path of a file with extension.</param>
<returns>Extension without prepending dot.</returns>
</member>
<member name="M:KeePassLib.Utility.UrlUtil.EnsureTerminatingSeparator(System.String,System.Boolean)">
<summary>
Ensure that a path is terminated with a directory separator character.
</summary>
<param name="strPath">Input path.</param>
<param name="bUrl">If <c>true</c>, a slash (<c>/</c>) is appended to
the string if it's not terminated already. If <c>false</c>, the
default system directory separator character is used.</param>
<returns>Path having a directory separator as last character.</returns>
</member>
<member name="M:KeePassLib.Utility.UrlUtil.GetHost(System.String)">
<summary>
Get the host component of an URL.
This method is faster and more fault-tolerant than creating
an <code>Uri</code> object and querying its <code>Host</code>
property.
</summary>
<example>
For the input <code>s://u:p@d.tld:p/p?q#f</code> the return
value is <code>d.tld</code>.
</example>
</member>
<member name="M:KeePassLib.Utility.UrlUtil.ExpandShellVariables(System.String,System.String[])">
<summary>
Expand shell variables in a string.
<paramref name="vParams" />[0] is the value of <c>%1</c>, etc.
</summary>
</member>
<member name="P:KeePassLib.Translation.KPFormCustomization.FullName">
<summary>
The fully qualified name of the form.
</summary>
</member>
<member name="T:KeePassLib.Serialization.KdbxFile">
<summary>
Serialization to KeePass KDBX files.
</summary>
<summary>
Serialization to KeePass KDBX files.
</summary>
<summary>
Serialization to KeePass KDBX files.
</summary>
<summary>
Serialization to KeePass KDBX files.
</summary>
</member>
<member name="F:KeePassLib.Serialization.KdbxFile.FileSignature1">
<summary>
File identifier, first 32-bit value.
</summary>
</member>
<member name="F:KeePassLib.Serialization.KdbxFile.FileSignature2">
<summary>
File identifier, second 32-bit value.
</summary>
</member>
<member name="F:KeePassLib.Serialization.KdbxFile.FileVersion32">
<summary>
File version of files saved by the current <c>KdbxFile</c> class.
KeePass 2.07 has version 1.01, 2.08 has 1.02, 2.09 has 2.00,
2.10 has 2.02, 2.11 has 2.04, 2.15 has 3.00, 2.20 has 3.01.
The first 2 bytes are critical (i.e. loading will fail, if the
file version is too high), the last 2 bytes are informational.
</summary>
</member>
<member name="M:KeePassLib.Serialization.KdbxFile.Load(System.String,KeePassLib.Serialization.KdbxFormat,KeePassLib.Interfaces.IStatusLogger)">
<summary>
Load a KDBX file.
</summary>
<param name="strFilePath">File to load.</param>
<param name="fmt">Format.</param>
<param name="slLogger">Status logger (optional).</param>
</member>
<member name="M:KeePassLib.Serialization.KdbxFile.Load(System.IO.Stream,KeePassLib.Serialization.KdbxFormat,KeePassLib.Interfaces.IStatusLogger)">
<summary>
Load a KDBX file from a stream.
</summary>
<param name="sSource">Stream to read the data from. Must contain
a KDBX stream.</param>
<param name="fmt">Format.</param>
<param name="slLogger">Status logger (optional).</param>
</member>
<member name="M:KeePassLib.Serialization.KdbxFile.ReadEntries(System.IO.Stream,KeePassLib.PwDatabase,System.Boolean)">
<summary>
Read entries from a stream.
</summary>
<param name="msData">Input stream to read the entries from.</param>
<param name="pdContext">Context database (e.g. for storing icons).</param>
<param name="bCopyIcons">If <c>true</c>, custom icons required by
the loaded entries are copied to the context database.</param>
<returns>Loaded entries.</returns>
</member>
<member name="M:KeePassLib.Serialization.KdbxFile.Save(System.IO.Stream,KeePassLib.PwGroup,KeePassLib.Serialization.KdbxFormat,KeePassLib.Interfaces.IStatusLogger)">
<summary>
Save the contents of the current <c>PwDatabase</c> to a KDBX file.
</summary>
<param name="sSaveTo">Stream to write the KDBX file into.</param>
<param name="pgDataSource">Group containing all groups and
entries to write. If <c>null</c>, the complete database will
be written.</param>
<param name="fmt">Format of the file to create.</param>
<param name="slLogger">Logger that recieves status information.</param>
</member>
<member name="M:KeePassLib.Serialization.KdbxFile.#ctor(KeePassLib.PwDatabase)">
<summary>
Default constructor.
</summary>
<param name="pwDataStore">The <c>PwDatabase</c> instance that the
class will load file data into or use to create a KDBX file.</param>
</member>
<member name="M:KeePassLib.Serialization.KdbxFile.DetermineLanguageId">
<summary>
Call this once to determine the current localization settings.
</summary>
</member>
<member name="P:KeePassLib.Serialization.KdbxFile.DetachBinaries">
<summary>
Detach binaries when opening a file. If this isn't <c>null</c>,
all binaries are saved to the specified path and are removed
from the database.
</summary>
</member>
<member name="T:KeePassLib.PwDefs">
<summary>
Contains KeePassLib-global definitions and enums.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.TitleField">
<summary>
Default identifier string for the title field.
Should not contain spaces, tabs or other whitespace.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.UserNameField">
<summary>
Default identifier string for the user name field.
Should not contain spaces, tabs or other whitespace.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.PasswordField">
<summary>
Default identifier string for the password field.
Should not contain spaces, tabs or other whitespace.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.UrlField">
<summary>
Default identifier string for the URL field.
Should not contain spaces, tabs or other whitespace.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.NotesField">
<summary>
Default identifier string for the notes field.
Should not contain spaces, tabs or other whitespace.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.ProductName">
<summary>
The product name.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.ShortProductName">
<summary>
A short, simple string representing the product name. The string
should contain no spaces, directory separator characters, etc.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.Version32">
<summary>
Version, encoded as 32-bit unsigned integer.
2.00 = 0x02000000, 2.01 = 0x02000100, ..., 2.18 = 0x02010800.
As of 2.19, the version is encoded component-wise per byte,
e.g. 2.19 = 0x02130000.
It is highly recommended to use <c>FileVersion64</c> instead.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.FileVersion64">
<summary>
Version, encoded as 64-bit unsigned integer
(component-wise, 16 bits per component).
</summary>
</member>
<member name="F:KeePassLib.PwDefs.VersionString">
<summary>
Version, encoded as string.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.HomepageUrl">
<summary>
Product website URL. Terminated by a forward slash.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.TranslationsUrl">
<summary>
URL to the online translations page.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.PluginsUrl">
<summary>
URL to the online plugins page.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.DonationsUrl">
<summary>
Product donations URL.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.HelpUrl">
<summary>
URL to the root path of the online KeePass help. Terminated by
a forward slash.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.VersionUrl">
<summary>
URL to a TXT file (eventually compressed) that contains information
about the latest KeePass version available on the website.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.DtDefaultNow">
<summary>
A <c>DateTime</c> object that represents the time when the assembly
was loaded.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.DefaultKeyEncryptionRounds">
<summary>
Default number of master key encryption/transformation rounds
(making dictionary attacks harder).
</summary>
</member>
<member name="F:KeePassLib.PwDefs.TanIndexField">
<summary>
Default identifier string for the field which will contain TAN indices.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.TanTitle">
<summary>
Default title of an entry that is really a TAN entry.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.AutoTypeStringPrefix">
<summary>
Prefix of a custom auto-type string field.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.HiddenPassword">
<summary>
Default string representing a hidden password.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.DefaultAutoTypeSequence">
<summary>
Default auto-type keystroke sequence. If no custom sequence is
specified, this sequence is used.
</summary>
</member>
<member name="F:KeePassLib.PwDefs.DefaultAutoTypeSequenceTan">
<summary>
Default auto-type keystroke sequence for TAN entries. If no custom
sequence is specified, this sequence is used.
</summary>
</member>
<member name="M:KeePassLib.PwDefs.IsStandardField(System.String)">
<summary>
Check if a name is a standard field name.
</summary>
<param name="strFieldName">Input field name.</param>
<returns>Returns <c>true</c>, if the field name is a standard
field name (title, user name, password, ...), otherwise <c>false</c>.</returns>
</member>
<member name="M:KeePassLib.PwDefs.IsTanEntry(KeePassLib.PwEntry)">
<summary>
Check whether an entry is a TAN entry.
</summary>
</member>
<member name="T:KeePassLib.SearchParameters">
<summary>
Search parameters for group and entry searches.
</summary>
</member>
<member name="M:KeePassLib.SearchParameters.#ctor">
<summary>
Construct a new search parameters object.
</summary>
</member>
<member name="P:KeePassLib.SearchParameters.ComparisonMode">
<summary>
String comparison type. Specifies the condition when the specified
text matches a group/entry string.
</summary>
</member>
<member name="P:KeePassLib.SearchParameters.DataTransformation">
<summary>
Only for serialization.
</summary>
</member>
<member name="T:KeePassLib.MemoryProtectionConfig">
<summary>
Memory protection configuration structure (for default fields).
</summary>
</member>
<member name="T:KeePassLib.Interfaces.IDeepCloneable`1">
<summary>
Interface for objects that are deeply cloneable.
</summary>
<typeparam name="T">Reference type.</typeparam>
</member>
<member name="M:KeePassLib.Interfaces.IDeepCloneable`1.CloneDeep">
<summary>
Deeply clone the object.
</summary>
<returns>Cloned object.</returns>
</member>
<member name="M:KeePassLib.Keys.KeyValidator.Validate(System.String,KeePassLib.Keys.KeyValidationType)">
<summary>
Validate a key.
</summary>
<param name="strKey">Key to validate.</param>
<param name="t">Type of the validation to perform.</param>
<returns>Returns <c>null</c>, if the validation is successful.
If there's a problem with the key, the returned string describes
the problem.</returns>
</member>
<member name="P:KeePassLib.Keys.KeyValidator.Name">
<summary>
Name of your key validator (should be unique).
</summary>
</member>
<member name="T:KeePassLib.Cryptography.HmacOtp">
<summary>
Generate HMAC-based one-time passwords as specified in RFC 4226.
</summary>
</member>
<member name="T:KeePassLib.Collections.ProtectedStringDictionary">
<summary>
A list of <c>ProtectedString</c> objects (dictionary).
</summary>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.#ctor">
<summary>
Construct a new list of protected strings.
</summary>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.CloneDeep">
<summary>
Clone the current <c>ProtectedStringList</c> object, including all
stored protected strings.
</summary>
<returns>New <c>ProtectedStringList</c> object.</returns>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.Get(System.String)">
<summary>
Get one of the protected strings.
</summary>
<param name="strName">String identifier.</param>
<returns>Protected string. If the string identified by
<paramref name="strName"/> cannot be found, the function
returns <c>null</c>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input parameter
is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.GetSafe(System.String)">
<summary>
Get one of the protected strings. The return value is never <c>null</c>.
If the requested string cannot be found, an empty protected string
object is returned.
</summary>
<param name="strName">String identifier.</param>
<returns>Returns a protected string object. If the standard string
has not been set yet, the return value is an empty string (<c>""</c>).</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input
parameter is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.Exists(System.String)">
<summary>
Test if a named string exists.
</summary>
<param name="strName">Name of the string to try.</param>
<returns>Returns <c>true</c> if the string exists, otherwise <c>false</c>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if
<paramref name="strName"/> is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.ReadSafe(System.String)">
<summary>
Get one of the protected strings. If the string doesn't exist, the
return value is an empty string (<c>""</c>).
</summary>
<param name="strName">Name of the requested string.</param>
<returns>Requested string value or an empty string, if the named
string doesn't exist.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input
parameter is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.ReadSafeEx(System.String)">
<summary>
Get one of the entry strings. If the string doesn't exist, the
return value is an empty string (<c>""</c>). If the string is
in-memory protected, the return value is <c>PwDefs.HiddenPassword</c>.
</summary>
<param name="strName">Name of the requested string.</param>
<returns>Returns the requested string in plain-text or
<c>PwDefs.HiddenPassword</c> if the string cannot be found.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input
parameter is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.Set(System.String,KeePassLib.Security.ProtectedString)">
<summary>
Set a string.
</summary>
<param name="strField">Identifier of the string field to modify.</param>
<param name="psNewValue">New value. This parameter must not be <c>null</c>.</param>
<exception cref="T:System.ArgumentNullException">Thrown if one of the input
parameters is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.ProtectedStringDictionary.Remove(System.String)">
<summary>
Delete a string.
</summary>
<param name="strField">Name of the string field to delete.</param>
<returns>Returns <c>true</c> if the field has been successfully
removed, otherwise the return value is <c>false</c>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input
parameter is <c>null</c>.</exception>
</member>
<member name="P:KeePassLib.Collections.ProtectedStringDictionary.UCount">
<summary>
Get the number of strings in this entry.
</summary>
</member>
<member name="T:KeePassLib.Resources.KLRes">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.CryptoStreamFailed">
<summary>
Look up a localized string similar to
'Failed to initialize encryption/decryption stream!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.EncDataTooLarge">
<summary>
Look up a localized string similar to
'The data is too large to be encrypted/decrypted securely using {PARAM}.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.ErrorInClipboard">
<summary>
Look up a localized string similar to
'An extended error report has been copied to the clipboard.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.Expect100Continue">
<summary>
Look up a localized string similar to
'Expect 100-Continue responses'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FatalError">
<summary>
Look up a localized string similar to
'Fatal Error'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FatalErrorText">
<summary>
Look up a localized string similar to
'A fatal error has occurred!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileCorrupted">
<summary>
Look up a localized string similar to
'The file is corrupted.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileHeaderCorrupted">
<summary>
Look up a localized string similar to
'The file header is corrupted.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileIncomplete">
<summary>
Look up a localized string similar to
'Data is missing at the end of the file, i.e. the file is incomplete.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileIncompleteExpc">
<summary>
Look up a localized string similar to
'Less data than expected could be read from the file.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileLoadFailed">
<summary>
Look up a localized string similar to
'Failed to load the specified file!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileLockedWrite">
<summary>
Look up a localized string similar to
'The file is locked, because the following user is currently writing to it:'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileNewVerOrPlgReq">
<summary>
Look up a localized string similar to
'A newer KeePass version or a plugin is required to open this file.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileNewVerReq">
<summary>
Look up a localized string similar to
'A newer KeePass version is required to open this file.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileSaveCorruptionWarning">
<summary>
Look up a localized string similar to
'The target file might be corrupted. Please try saving again. If that fails, save the database to a different location.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileSaveFailed">
<summary>
Look up a localized string similar to
'Failed to save the current database to the specified location!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileSigInvalid">
<summary>
Look up a localized string similar to
'The file signature is invalid. Either the file isn't a KeePass database file at all or it is corrupted.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileUnknownCipher">
<summary>
Look up a localized string similar to
'The file is encrypted using an unknown encryption algorithm!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileUnknownCompression">
<summary>
Look up a localized string similar to
'The file is compressed using an unknown compression algorithm!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FileVersionUnsupported">
<summary>
Look up a localized string similar to
'The file version is unsupported.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FinalKeyCreationFailed">
<summary>
Look up a localized string similar to
'Failed to create the final encryption/decryption key!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.FrameworkNotImplExcp">
<summary>
Look up a localized string similar to
'The .NET Framework/runtime under which KeePass is currently running does not support this operation.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.General">
<summary>
Look up a localized string similar to
'General'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.InvalidCompositeKey">
<summary>
Look up a localized string similar to
'The composite key is invalid!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.InvalidCompositeKeyHint">
<summary>
Look up a localized string similar to
'Make sure the composite key is correct and try again.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.InvalidDataWhileDecoding">
<summary>
Look up a localized string similar to
'Found invalid data while decoding.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.KeePass1xHint">
<summary>
Look up a localized string similar to
'In order to import KeePass 1.x KDB files, create a new 2.x database file and click 'File' -> 'Import' in the main menu. In the import dialog, choose 'KeePass KDB (1.x)' as file format.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.KeyBits">
<summary>
Look up a localized string similar to
'{PARAM}-bit key'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.KeyFileDbSel">
<summary>
Look up a localized string similar to
'Database files cannot be used as key files.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.MasterSeedLengthInvalid">
<summary>
Look up a localized string similar to
'The length of the master key seed is invalid!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.OldFormat">
<summary>
Look up a localized string similar to
'The selected file appears to be an old format'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.Passive">
<summary>
Look up a localized string similar to
'Passive'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.PreAuth">
<summary>
Look up a localized string similar to
'Pre-authenticate'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.Timeout">
<summary>
Look up a localized string similar to
'Timeout'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.TryAgainSecs">
<summary>
Look up a localized string similar to
'Please try it again in a few seconds.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.UnknownHeaderId">
<summary>
Look up a localized string similar to
'Unknown header ID!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.UnknownKdf">
<summary>
Look up a localized string similar to
'Unknown key derivation function!'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.UserAccountKeyError">
<summary>
Look up a localized string similar to
'The operating system did not grant KeePass read/write access to the user profile folder, where the protected user key is stored.'.
</summary>
</member>
<member name="P:KeePassLib.Resources.KLRes.UserAgent">
<summary>
Look up a localized string similar to
'User agent'.
</summary>
</member>
<member name="T:KeePassLib.Cryptography.CrsAlgorithm">
<summary>
Algorithms supported by <c>CryptoRandomStream</c>.
</summary>
</member>
<member name="F:KeePassLib.Cryptography.CrsAlgorithm.Null">
<summary>
Not supported.
</summary>
</member>
<member name="F:KeePassLib.Cryptography.CrsAlgorithm.ArcFourVariant">
<summary>
A variant of the ARCFour algorithm (RC4 incompatible).
Insecure; for backward compatibility only.
</summary>
</member>
<member name="F:KeePassLib.Cryptography.CrsAlgorithm.Salsa20">
<summary>
Salsa20 stream cipher algorithm.
</summary>
</member>
<member name="F:KeePassLib.Cryptography.CrsAlgorithm.ChaCha20">
<summary>
ChaCha20 stream cipher algorithm.
</summary>
</member>
<member name="T:KeePassLib.Cryptography.CryptoRandomStream">
<summary>
A random stream class. The class is initialized using random
bytes provided by the caller. The produced stream has random
properties, but for the same seed always the same stream
is produced, i.e. this class can be used as stream cipher.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.CryptoRandomStream.#ctor(KeePassLib.Cryptography.CrsAlgorithm,System.Byte[])">
<summary>
Construct a new cryptographically secure random stream object.
</summary>
<param name="a">Algorithm to use.</param>
<param name="pbKey">Initialization key. Must not be <c>null</c>
and must contain at least 1 byte.</param>
</member>
<member name="M:KeePassLib.Cryptography.CryptoRandomStream.GetRandomBytes(System.UInt32)">
<summary>
Get <paramref name="uRequestedCount" /> random bytes.
</summary>
<param name="uRequestedCount">Number of random bytes to retrieve.</param>
<returns>Returns <paramref name="uRequestedCount" /> random bytes.</returns>
</member>
<member name="T:KeePassLib.Utility.CharStream">
<summary>
Character stream class.
</summary>
</member>
<member name="P:KeePassLib.Utility.StrEncodingInfo.CodePointSize">
<summary>
Size of a character in bytes.
</summary>
</member>
<member name="P:KeePassLib.Utility.StrEncodingInfo.StartSignature">
<summary>
Start signature of the text (byte order mark).
May be <c>null</c> or empty, if no signature is known.
</summary>
</member>
<member name="T:KeePassLib.Utility.StrUtil">
<summary>
A class containing various string helper methods.
</summary>
</member>
<member name="M:KeePassLib.Utility.StrUtil.StringToHtml(System.String)">
<summary>
Convert a string to a HTML sequence representing that string.
</summary>
<param name="str">String to convert.</param>
<returns>String, HTML-encoded.</returns>
</member>
<member name="M:KeePassLib.Utility.StrUtil.SplitCommandLine(System.String,System.String@,System.String@)">
<summary>
Split up a command line into application and argument.
</summary>
<param name="strCmdLine">Command line to split.</param>
<param name="strApp">Application path.</param>
<param name="strArgs">Arguments.</param>
</member>
<member name="M:KeePassLib.Utility.StrUtil.ColorToUnnamedHtml(System.Drawing.Color,System.Boolean)">
<summary>
Convert a <c>Color</c> to a HTML color identifier string.
</summary>
<param name="color">Color to convert.</param>
<param name="bEmptyIfTransparent">If this is <c>true</c>, an empty string
is returned if the color is transparent.</param>
<returns>HTML color identifier string.</returns>
</member>
<member name="M:KeePassLib.Utility.StrUtil.FormatException(System.Exception)">
<summary>
Format an exception and convert it to a string.
</summary>
<param name="excp"><c>Exception</c> to convert/format.</param>
<returns>String representing the exception.</returns>
</member>
<member name="M:KeePassLib.Utility.StrUtil.SafeXmlString(System.String)">
<summary>
Removes all characters that are not valid XML characters,
according to https://www.w3.org/TR/xml/#charsets .
</summary>
<param name="strText">Source text.</param>
<returns>Text containing only valid XML characters.</returns>
</member>
<member name="M:KeePassLib.Utility.StrUtil.NormalizeNewLines(System.String,System.Boolean)">
<summary>
Normalize new line characters in a string. Input strings may
contain mixed new line character sequences from all commonly
used operating systems (i.e. \r\n from Windows, \n from Unix
and \r from Mac OS.
</summary>
<param name="str">String with mixed new line characters.</param>
<param name="bWindows">If <c>true</c>, new line characters
are normalized for Windows (\r\n); if <c>false</c>, new line
characters are normalized for Unix (\n).</param>
<returns>String with normalized new line characters.</returns>
</member>
<member name="M:KeePassLib.Utility.StrUtil.SplitWithSep(System.String,System.String[],System.Boolean)">
<summary>
Split a string and include the separators in the splitted array.
</summary>
<param name="str">String to split.</param>
<param name="vSeps">Separators.</param>
<param name="bCaseSensitive">Specifies whether separators are
matched case-sensitively or not.</param>
<returns>Splitted string including separators.</returns>
</member>
<member name="M:KeePassLib.Utility.StrUtil.DataToDataUri(System.Byte[],System.String)">
<summary>
Create a data URI (according to RFC 2397).
</summary>
<param name="pbData">Data to encode.</param>
<param name="strMediaType">Optional MIME type. If <c>null</c>,
an appropriate type is used.</param>
<returns>Data URI.</returns>
</member>
<member name="M:KeePassLib.Utility.StrUtil.DataUriToData(System.String)">
<summary>
Convert a data URI (according to RFC 2397) to binary data.
</summary>
<param name="strDataUri">Data URI to decode.</param>
<returns>Decoded binary data.</returns>
</member>
<member name="M:KeePassLib.Utility.StrUtil.RemovePlaceholders(System.String)">
<summary>
Remove placeholders from a string (wrapped in '{' and '}').
This doesn't remove environment variables (wrapped in '%').
</summary>
</member>
<member name="M:KeePassLib.Utility.StrUtil.GetUnusedChar(System.String)">
<summary>
Find a character that does not occur within a given text.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.KeyDerivation.KdfEngine.Randomize(KeePassLib.Cryptography.KeyDerivation.KdfParameters)">
<summary>
Generate random seeds and store them in <paramref name="p" />.
</summary>
</member>
<member name="M:KeePassLib.Utility.MonoWorkarounds.ExchangeFormShownRaised(System.Windows.Forms.Form,System.Boolean)">
<summary>
Set the value of the private <c>shown_raised</c> member
variable of a form.
</summary>
<returns>Previous <c>shown_raised</c> value.</returns>
</member>
<member name="M:KeePassLib.Utility.MonoWorkarounds.EnsureRecentlyUsedValid">
<summary>
Ensure that the file ~/.recently-used is valid (in order to
prevent Mono's FileDialog from crashing).
</summary>
</member>
<member name="P:KeePassLib.Translation.KPControlCustomization.Name">
<summary>
Member variable name of the control to be translated.
</summary>
</member>
<member name="T:KeePassLib.Security.XorredBuffer">
<summary>
A <c>XorredBuffer</c> object stores data that is encrypted
using a XOR pad.
</summary>
</member>
<member name="M:KeePassLib.Security.XorredBuffer.#ctor(System.Byte[],System.Byte[])">
<summary>
Construct a new <c>XorredBuffer</c> object.
The <paramref name="pbCT" /> byte array must have the same
length as the <paramref name="pbXorPad" /> byte array.
The <c>XorredBuffer</c> object takes ownership of the two byte
arrays, i.e. the caller must not use them afterwards.
</summary>
<param name="pbCT">Data with XOR pad applied.</param>
<param name="pbXorPad">XOR pad that can be used to decrypt the
<paramref name="pbCT" /> byte array.</param>
</member>
<member name="M:KeePassLib.Security.XorredBuffer.ReadPlainText">
<summary>
Get a copy of the plain-text. The caller is responsible
for clearing the byte array safely after using it.
</summary>
<returns>Plain-text byte array.</returns>
</member>
<member name="M:KeePassLib.Collections.StringDictionaryEx.Set(System.String,System.String)">
<summary>
Set a string.
</summary>
<param name="strField">Identifier of the string field to modify.</param>
<param name="strNewValue">New value. This parameter must not be <c>null</c>.</param>
<exception cref="T:System.ArgumentNullException">Thrown if one of the input
parameters is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.StringDictionaryEx.Remove(System.String)">
<summary>
Delete a string.
</summary>
<param name="strField">Name of the string field to delete.</param>
<returns>Returns <c>true</c>, if the field has been successfully
removed. Otherwise, the return value is <c>false</c>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input
parameter is <c>null</c>.</exception>
</member>
<member name="T:KeePassLib.Utility.TimeUtil">
<summary>
Contains various static time structure manipulation and conversion
routines.
</summary>
</member>
<member name="F:KeePassLib.Utility.TimeUtil.PwTimeLength">
<summary>
Length of a compressed <c>PW_TIME</c> structure in bytes.
</summary>
</member>
<member name="M:KeePassLib.Utility.TimeUtil.PackTime(System.DateTime)">
<summary>
Pack a <c>DateTime</c> object into 5 bytes. Layout: 2 zero bits,
year 12 bits, month 4 bits, day 5 bits, hour 5 bits, minute 6
bits, second 6 bits.
</summary>
</member>
<member name="M:KeePassLib.Utility.TimeUtil.UnpackTime(System.Byte[])">
<summary>
Unpack a packed time (5 bytes, packed by the <c>PackTime</c>
member function) to a <c>DateTime</c> object.
</summary>
<param name="pb">Packed time, 5 bytes.</param>
<returns>Unpacked <c>DateTime</c> object.</returns>
</member>
<member name="M:KeePassLib.Utility.TimeUtil.PackPwTime(System.DateTime)">
<summary>
Pack a <c>DateTime</c> object into 7 bytes (<c>PW_TIME</c>).
</summary>
<param name="dt">Object to be encoded.</param>
<returns>Packed time, 7 bytes (<c>PW_TIME</c>).</returns>
</member>
<member name="M:KeePassLib.Utility.TimeUtil.UnpackPwTime(System.Byte[])">
<summary>
Unpack a packed time (7 bytes, <c>PW_TIME</c>) to a <c>DateTime</c> object.
</summary>
<param name="pb">Packed time, 7 bytes.</param>
<returns>Unpacked <c>DateTime</c> object.</returns>
</member>
<member name="M:KeePassLib.Utility.TimeUtil.ToDisplayString(System.DateTime)">
<summary>
Convert a <c>DateTime</c> object to a displayable string.
</summary>
<param name="dt"><c>DateTime</c> object to convert to a string.</param>
<returns>String representing the specified <c>DateTime</c> object.</returns>
</member>
<member name="M:KeePassLib.Utility.TimeUtil.ParseUSTextDate(System.String,System.DateTimeKind)">
<summary>
Parse a US textual date string, like e.g. "January 02, 2012".
</summary>
</member>
<member name="F:KeePassLib.Serialization.IOCredSaveMode.NoSave">
<summary>
Do not remember user name or password.
</summary>
</member>
<member name="F:KeePassLib.Serialization.IOCredSaveMode.UserNameOnly">
<summary>
Remember the user name only, not the password.
</summary>
</member>
<member name="F:KeePassLib.Serialization.IOCredSaveMode.SaveCred">
<summary>
Save both user name and password.
</summary>
</member>
<member name="P:KeePassLib.Serialization.IOConnectionInfo.PropertiesEx">
<summary>
For serialization only; use <c>Properties</c> in code.
</summary>
</member>
<member name="T:KeePassLib.Interfaces.LogStatusType">
<summary>
Status message types.
</summary>
</member>
<member name="F:KeePassLib.Interfaces.LogStatusType.Info">
<summary>
Default type: simple information type.
</summary>
</member>
<member name="F:KeePassLib.Interfaces.LogStatusType.Warning">
<summary>
Warning message.
</summary>
</member>
<member name="F:KeePassLib.Interfaces.LogStatusType.Error">
<summary>
Error message.
</summary>
</member>
<member name="F:KeePassLib.Interfaces.LogStatusType.AdditionalInfo">
<summary>
Additional information. Depends on lines above.
</summary>
</member>
<member name="T:KeePassLib.Interfaces.IStatusLogger">
<summary>
Status logging interface.
</summary>
</member>
<member name="M:KeePassLib.Interfaces.IStatusLogger.StartLogging(System.String,System.Boolean)">
<summary>
Function which needs to be called when logging is started.
</summary>
<param name="strOperation">This string should roughly describe
the operation, of which the status is logged.</param>
<param name="bWriteOperationToLog">Specifies whether the
operation is written to the log or not.</param>
</member>
<member name="M:KeePassLib.Interfaces.IStatusLogger.EndLogging">
<summary>
Function which needs to be called when logging is ended
(i.e. when no more messages will be logged and when the
percent value won't change any more).
</summary>
</member>
<member name="M:KeePassLib.Interfaces.IStatusLogger.SetProgress(System.UInt32)">
<summary>
Set the current progress in percent.
</summary>
<param name="uPercent">Percent of work finished.</param>
<returns>Returns <c>true</c> if the caller should continue
the current work.</returns>
</member>
<member name="M:KeePassLib.Interfaces.IStatusLogger.SetText(System.String,KeePassLib.Interfaces.LogStatusType)">
<summary>
Set the current status text.
</summary>
<param name="strNewText">Status text.</param>
<param name="lsType">Type of the message.</param>
<returns>Returns <c>true</c> if the caller should continue
the current work.</returns>
</member>
<member name="M:KeePassLib.Interfaces.IStatusLogger.ContinueWork">
<summary>
Check if the user cancelled the current work.
</summary>
<returns>Returns <c>true</c> if the caller should continue
the current work.</returns>
</member>
<member name="T:KeePassLib.Interfaces.ITimeLogger">
<summary>
Interface for objects that support various times (creation time, last
access time, last modification time and expiry time). Offers
several helper functions (for example a function to touch the current
object).
</summary>
</member>
<member name="M:KeePassLib.Interfaces.ITimeLogger.Touch(System.Boolean)">
<summary>
Touch the object. This function updates the internal last access
time. If the <paramref name="bModified" /> parameter is <c>true</c>,
the last modification time gets updated, too. Each time you call
<c>Touch</c>, the usage count of the object is increased by one.
</summary>
<param name="bModified">Update last modification time.</param>
</member>
<member name="P:KeePassLib.Interfaces.ITimeLogger.CreationTime">
<summary>
The date/time when the object was created.
</summary>
</member>
<member name="P:KeePassLib.Interfaces.ITimeLogger.LastModificationTime">
<summary>
The date/time when the object was last modified.
</summary>
</member>
<member name="P:KeePassLib.Interfaces.ITimeLogger.LastAccessTime">
<summary>
The date/time when the object was last accessed.
</summary>
</member>
<member name="P:KeePassLib.Interfaces.ITimeLogger.ExpiryTime">
<summary>
The date/time when the object expires.
</summary>
</member>
<member name="P:KeePassLib.Interfaces.ITimeLogger.Expires">
<summary>
Flag that determines if the object does expire.
</summary>
</member>
<member name="P:KeePassLib.Interfaces.ITimeLogger.UsageCount">
<summary>
Get or set the usage count of the object. To increase the usage
count by one, use the <c>Touch</c> function.
</summary>
</member>
<member name="P:KeePassLib.Interfaces.ITimeLogger.LocationChanged">
<summary>
The date/time when the location of the object was last changed.
</summary>
</member>
<member name="P:KeePassLib.Cryptography.Cipher.ICipherEngine.CipherUuid">
<summary>
UUID of the engine. If you want to write an engine/plugin,
please contact the KeePass team to obtain a new UUID.
</summary>
</member>
<member name="P:KeePassLib.Cryptography.Cipher.ICipherEngine.DisplayName">
<summary>
Name displayed in the list of available encryption/decryption
engines in the GUI.
</summary>
</member>
<member name="T:KeePassLib.Keys.IUserKey">
<summary>
Interface to a user key, like a password, key file data, etc.
</summary>
</member>
<member name="P:KeePassLib.Keys.IUserKey.KeyData">
<summary>
Get key data. Querying this property is fast (it returns a
reference to a cached <c>ProtectedBinary</c> object).
If no key data is available, <c>null</c> is returned.
</summary>
</member>
<member name="M:KeePassLib.Interfaces.IUIOperations.UIFileSave(System.Boolean)">
<summary>
Let the user interface save the current database.
</summary>
<param name="bForceSave">If <c>true</c>, the UI will not ask for
whether to synchronize or overwrite, it'll simply overwrite the
file.</param>
<returns>Returns <c>true</c> if the file has been saved.</returns>
</member>
<member name="M:KeePassLib.Cryptography.PasswordGenerator.PwCharSet.#ctor">
<summary>
Create a new, empty character set collection object.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.PasswordGenerator.PwCharSet.Clear">
<summary>
Remove all characters from this set.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.PasswordGenerator.PwCharSet.Add(System.Char)">
<summary>
Add characters to the set.
</summary>
<param name="ch">Character to add.</param>
</member>
<member name="M:KeePassLib.Cryptography.PasswordGenerator.PwCharSet.Add(System.String)">
<summary>
Add characters to the set.
</summary>
<param name="strCharSet">String containing characters to add.</param>
</member>
<member name="M:KeePassLib.Cryptography.PasswordGenerator.PwCharSet.ToString">
<summary>
Convert the character set to a string containing all its characters.
</summary>
<returns>String containing all character set characters.</returns>
</member>
<member name="P:KeePassLib.Cryptography.PasswordGenerator.PwCharSet.Size">
<summary>
Number of characters in this set.
</summary>
</member>
<member name="P:KeePassLib.Cryptography.PasswordGenerator.PwCharSet.Item(System.UInt32)">
<summary>
Get a character of the set using an index.
</summary>
<param name="uPos">Index of the character to get.</param>
<returns>Character at the specified position. If the index is invalid,
an <c>ArgumentOutOfRangeException</c> is thrown.</returns>
</member>
<member name="M:KeePassLib.Cryptography.CryptoUtil.ResizeKey(System.Byte[],System.Int32,System.Int32,System.Int32)">
<summary>
Create a cryptographic key of length <paramref name="cbOut" />
(in bytes) from <paramref name="pbIn" />.
</summary>
</member>
<member name="T:KeePassLib.Cryptography.PasswordGenerator.PwGenerator">
<summary>
Utility functions for generating random passwords.
</summary>
</member>
<member name="M:KeePassLib.Serialization.IOConnection.RenameFile(KeePassLib.Serialization.IOConnectionInfo,KeePassLib.Serialization.IOConnectionInfo)">
<summary>
Rename/move a file. For local file system and WebDAV, the
specified file is moved, i.e. the file destination can be
in a different directory/path. In contrast, for FTP the
file is renamed, i.e. its destination must be in the same
directory/path.
</summary>
<param name="iocFrom">Source file path.</param>
<param name="iocTo">Target file path.</param>
</member>
<member name="M:KeePassLib.Cryptography.PasswordGenerator.CustomPwGenerator.Generate(KeePassLib.Cryptography.PasswordGenerator.PwProfile,KeePassLib.Cryptography.CryptoRandomStream)">
<summary>
Password generation function.
</summary>
<param name="prf">Password generation options chosen
by the user. This may be <c>null</c>, if the default
options should be used.</param>
<param name="crsRandomSource">Source that the algorithm
can use to generate random numbers.</param>
<returns>Generated password or <c>null</c> in case
of failure. If returning <c>null</c>, the caller assumes
that an error message has already been shown to the user.</returns>
</member>
<member name="P:KeePassLib.Cryptography.PasswordGenerator.CustomPwGenerator.Uuid">
<summary>
Each custom password generation algorithm must have
its own unique UUID.
</summary>
</member>
<member name="P:KeePassLib.Cryptography.PasswordGenerator.CustomPwGenerator.Name">
<summary>
Displayable name of the password generation algorithm.
</summary>
</member>
<member name="T:KeePassLib.Collections.AutoTypeConfig">
<summary>
A list of auto-type associations.
</summary>
</member>
<member name="M:KeePassLib.Collections.AutoTypeConfig.#ctor">
<summary>
Construct a new auto-type associations list.
</summary>
</member>
<member name="M:KeePassLib.Collections.AutoTypeConfig.Clear">
<summary>
Remove all associations.
</summary>
</member>
<member name="M:KeePassLib.Collections.AutoTypeConfig.CloneDeep">
<summary>
Clone the auto-type associations list.
</summary>
<returns>New, cloned object.</returns>
</member>
<member name="P:KeePassLib.Collections.AutoTypeConfig.Enabled">
<summary>
Specify whether auto-type is enabled or not.
</summary>
</member>
<member name="P:KeePassLib.Collections.AutoTypeConfig.ObfuscationOptions">
<summary>
Specify whether the typing should be obfuscated.
</summary>
</member>
<member name="P:KeePassLib.Collections.AutoTypeConfig.DefaultSequence">
<summary>
The default keystroke sequence that is auto-typed if
no matching window is found in the <c>Associations</c>
container.
</summary>
</member>
<member name="P:KeePassLib.Collections.AutoTypeConfig.Associations">
<summary>
Get all auto-type window/keystroke sequence pairs.
</summary>
</member>
<member name="P:KeePassLib.Keys.KeyProvider.Name">
<summary>
Name of your key provider (should be unique).
</summary>
</member>
<member name="P:KeePassLib.Keys.KeyProvider.Exclusive">
<summary>
Property indicating whether the provider is exclusive.
If the provider is exclusive, KeePass doesn't allow other
key sources (master password, Windows user account, ...)
to be combined with the provider.
Key providers typically should return <c>false</c>
(to allow non-exclusive use), i.e. don't override this
property.
</summary>
</member>
<member name="P:KeePassLib.Keys.KeyProvider.DirectKey">
<summary>
Property that specifies whether the returned key data
gets hashed by KeePass first or is written directly to
the user key data stream.
Standard key provider plugins should return <c>false</c>
(i.e. don't overwrite this property). Returning <c>true</c>
may cause severe security problems and is highly
discouraged.
</summary>
</member>
<member name="P:KeePassLib.Keys.KeyProvider.GetKeyMightShowGui">
<summary>
This property specifies whether the <c>GetKey</c> method might
show a form or dialog. If there is any chance that the method shows
one, this property must return <c>true</c>. Only if it's guaranteed
that the <c>GetKey</c> method doesn't show any form or dialog, this
property should return <c>false</c>.
</summary>
</member>
<member name="P:KeePassLib.Keys.KeyProvider.SecureDesktopCompatible">
<summary>
This property specifies whether the key provider is compatible
with the secure desktop mode. This almost never is the case,
so you usually won't override this property.
</summary>
</member>
<member name="T:KeePassLib.Cryptography.Cipher.ChaCha20Cipher">
<summary>
Implementation of the ChaCha20 cipher with a 96-bit nonce,
as specified in RFC 7539.
https://tools.ietf.org/html/rfc7539
</summary>
</member>
<member name="M:KeePassLib.Cryptography.Cipher.ChaCha20Cipher.#ctor(System.Byte[],System.Byte[],System.Boolean)">
<summary>
Constructor.
</summary>
<param name="pbKey32">Key (32 bytes).</param>
<param name="pbIV12">Nonce (12 bytes).</param>
<param name="bLargeCounter">If <c>false</c>, the RFC 7539 version
of ChaCha20 is used. In this case, only 256 GB of data can be
encrypted securely (because the block counter is a 32-bit variable);
an attempt to encrypt more data throws an exception.
If <paramref name="bLargeCounter" /> is <c>true</c>, the 32-bit
counter overflows to another 32-bit variable (i.e. the counter
effectively is a 64-bit variable), like in the original ChaCha20
specification by D. J. Bernstein (which has a 64-bit counter and a
64-bit nonce). To be compatible with this version, the 64-bit nonce
must be stored in the last 8 bytes of <paramref name="pbIV12" />
and the first 4 bytes must be 0.
If the IV was generated randomly, a 12-byte IV and a large counter
can be used to securely encrypt more than 256 GB of data (but note
this is incompatible with RFC 7539 and the original specification).</param>
</member>
<member name="T:KeePassLib.Collections.PwObjectList`1">
<summary>
List of objects that implement <c>IDeepCloneable</c>,
and cannot be <c>null</c>.
</summary>
<typeparam name="T">Type specifier.</typeparam>
</member>
<member name="M:KeePassLib.Collections.PwObjectList`1.#ctor">
<summary>
Construct a new list of objects.
</summary>
</member>
<member name="M:KeePassLib.Collections.PwObjectList`1.CloneDeep">
<summary>
Clone the current <c>PwObjectList</c>, including all
stored objects (deep copy).
</summary>
<returns>New <c>PwObjectList</c>.</returns>
</member>
<member name="M:KeePassLib.Collections.PwObjectList`1.Add(`0)">
<summary>
Add an object to this list.
</summary>
<param name="pwObject">Object to be added.</param>
<exception cref="T:System.ArgumentNullException">Thrown if the input
parameter is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.PwObjectList`1.GetAt(System.UInt32)">
<summary>
Get an object of the list.
</summary>
<param name="uIndex">Index of the object to get. Must be valid, otherwise an
exception is thrown.</param>
<returns>Reference to an existing <c>T</c> object. Is never <c>null</c>.</returns>
</member>
<member name="M:KeePassLib.Collections.PwObjectList`1.GetRange(System.UInt32,System.UInt32)">
<summary>
Get a range of objects.
</summary>
<param name="uStartIndexIncl">Index of the first object to be
returned (inclusive).</param>
<param name="uEndIndexIncl">Index of the last object to be
returned (inclusive).</param>
<returns></returns>
</member>
<member name="M:KeePassLib.Collections.PwObjectList`1.Remove(`0)">
<summary>
Delete an object of this list. The object to be deleted is identified
by a reference handle.
</summary>
<param name="pwReference">Reference of the object to be deleted.</param>
<returns>Returns <c>true</c> if the object was deleted, <c>false</c> if
the object wasn't found in this list.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input
parameter is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.PwObjectList`1.MoveOne(`0,System.Boolean)">
<summary>
Move an object up or down.
</summary>
<param name="tObject">The object to be moved.</param>
<param name="bUp">Move one up. If <c>false</c>, move one down.</param>
</member>
<member name="M:KeePassLib.Collections.PwObjectList`1.MoveTopBottom(`0[],System.Boolean)">
<summary>
Move some of the objects in this list to the top/bottom.
</summary>
<param name="vObjects">List of objects to be moved.</param>
<param name="bTop">Move to top. If <c>false</c>, move to bottom.</param>
</member>
<member name="P:KeePassLib.Collections.PwObjectList`1.UCount">
<summary>
Get number of objects in this list.
</summary>
</member>
<member name="T:KeePassLib.Cryptography.PasswordGenerator.PasswordGeneratorType">
<summary>
Type of the password generator. Different types like generators
based on given patterns, based on character sets, etc. are
available.
</summary>
</member>
<member name="F:KeePassLib.Cryptography.PasswordGenerator.PasswordGeneratorType.CharSet">
<summary>
Generator based on character spaces/sets, i.e. groups
of characters like lower-case, upper-case or numeric characters.
</summary>
</member>
<member name="F:KeePassLib.Cryptography.PasswordGenerator.PasswordGeneratorType.Pattern">
<summary>
Password generation based on a pattern. The user has provided
a pattern, which describes how the generated password has to
look like.
</summary>
</member>
<member name="T:KeePassLib.Cryptography.CryptoRandom">
<summary>
Cryptographically secure pseudo-random number generator.
The returned values are unpredictable and cannot be reproduced.
<c>CryptoRandom</c> is a singleton class.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.CryptoRandom.AddEntropy(System.Byte[])">
<summary>
Update the internal seed of the random number generator based
on entropy data.
This method is thread-safe.
</summary>
<param name="pbEntropy">Entropy bytes.</param>
</member>
<member name="M:KeePassLib.Cryptography.CryptoRandom.GetRandomBytes(System.UInt32)">
<summary>
Get a number of cryptographically strong random bytes.
This method is thread-safe.
</summary>
<param name="uRequestedBytes">Number of requested random bytes.</param>
<returns>A byte array consisting of <paramref name="uRequestedBytes" />
random bytes.</returns>
</member>
<member name="P:KeePassLib.Cryptography.CryptoRandom.GeneratedBytesCount">
<summary>
Get the number of random bytes that this instance generated so far.
Note that this number can be higher than the number of random bytes
actually requested using the <c>GetRandomBytes</c> method.
</summary>
</member>
<member name="E:KeePassLib.Cryptography.CryptoRandom.GenerateRandom256Pre">
<summary>
Event that is triggered whenever the internal <c>GenerateRandom256</c>
method is called to generate random bytes.
</summary>
</member>
<member name="T:KeePassLib.Native.NativeLib">
<summary>
Interface to native library (library containing fast versions of
several cryptographic functions).
</summary>
</member>
<member name="M:KeePassLib.Native.NativeLib.IsLibraryInstalled">
<summary>
Determine if the native library is installed.
</summary>
<returns>Returns <c>true</c>, if the native library is installed.</returns>
</member>
<member name="M:KeePassLib.Native.NativeLib.TransformKey256(System.Byte[],System.Byte[],System.UInt64)">
<summary>
Transform a key.
</summary>
<param name="pBuf256">Source and destination buffer.</param>
<param name="pKey256">Key to use in the transformation.</param>
<param name="uRounds">Number of transformation rounds.</param>
<returns>Returns <c>true</c>, if the key was transformed successfully.</returns>
</member>
<member name="M:KeePassLib.Native.NativeLib.TransformKeyBenchmark256(System.UInt32,System.UInt64@)">
<summary>
Benchmark key transformation.
</summary>
<param name="uTimeMs">Number of milliseconds to perform the benchmark.</param>
<param name="puRounds">Number of transformations done.</param>
<returns>Returns <c>true</c>, if the benchmark was successful.</returns>
</member>
<member name="P:KeePassLib.Native.NativeLib.AllowNative">
<summary>
If this property is set to <c>true</c>, the native library is used.
If it is <c>false</c>, all calls to functions in this class will fail.
</summary>
</member>
<member name="M:KeePassLib.Utility.GfxUtil.ScaleImage(System.Drawing.Image,System.Int32,System.Int32,KeePassLib.ScaleTransformFlags)">
<summary>
Resize an image.
</summary>
<param name="img">Image to resize.</param>
<param name="w">Width of the returned image.</param>
<param name="h">Height of the returned image.</param>
<param name="f">Flags to customize scaling behavior.</param>
<returns>Resized image. This object is always different
from <paramref name="img" /> (i.e. they can be
disposed separately).</returns>
</member>
<member name="T:KeePassLib.Utility.MemUtil">
<summary>
Buffer manipulation and conversion routines.
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.HexStringToByteArray(System.String)">
<summary>
Convert a hexadecimal string to a byte array. The input string must be
even (i.e. its length is a multiple of 2).
</summary>
<param name="strHex">String containing hexadecimal characters.</param>
<returns>Returns a byte array. Returns <c>null</c> if the string parameter
was <c>null</c> or is an uneven string (i.e. if its length isn't a
multiple of 2).</returns>
<exception cref="T:System.ArgumentNullException">Thrown if <paramref name="strHex"/>
is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Utility.MemUtil.ByteArrayToHexString(System.Byte[])">
<summary>
Convert a byte array to a hexadecimal string.
</summary>
<param name="pbArray">Input byte array.</param>
<returns>Returns the hexadecimal string representing the byte
array. Returns <c>null</c>, if the input byte array was <c>null</c>. Returns
an empty string, if the input byte array has length 0.</returns>
</member>
<member name="M:KeePassLib.Utility.MemUtil.ParseBase32(System.String)">
<summary>
Decode Base32 strings according to RFC 4648.
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.ZeroByteArray(System.Byte[])">
<summary>
Set all bytes in a byte array to zero.
</summary>
<param name="pbArray">Input array. All bytes of this array
will be set to zero.</param>
</member>
<member name="M:KeePassLib.Utility.MemUtil.ZeroArray``1(``0[])">
<summary>
Set all elements of an array to the default value.
</summary>
<param name="v">Input array.</param>
</member>
<member name="M:KeePassLib.Utility.MemUtil.BytesToUInt16(System.Byte[])">
<summary>
Convert 2 bytes to a 16-bit unsigned integer (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.BytesToUInt16(System.Byte[],System.Int32)">
<summary>
Convert 2 bytes to a 16-bit unsigned integer (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.BytesToUInt32(System.Byte[])">
<summary>
Convert 4 bytes to a 32-bit unsigned integer (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.BytesToUInt32(System.Byte[],System.Int32)">
<summary>
Convert 4 bytes to a 32-bit unsigned integer (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.BytesToUInt64(System.Byte[])">
<summary>
Convert 8 bytes to a 64-bit unsigned integer (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.BytesToUInt64(System.Byte[],System.Int32)">
<summary>
Convert 8 bytes to a 64-bit unsigned integer (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.UInt16ToBytes(System.UInt16)">
<summary>
Convert a 16-bit unsigned integer to 2 bytes (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.UInt32ToBytes(System.UInt32)">
<summary>
Convert a 32-bit unsigned integer to 4 bytes (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.UInt32ToBytesEx(System.UInt32,System.Byte[],System.Int32)">
<summary>
Convert a 32-bit unsigned integer to 4 bytes (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.UInt64ToBytes(System.UInt64)">
<summary>
Convert a 64-bit unsigned integer to 8 bytes (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.UInt64ToBytesEx(System.UInt64,System.Byte[],System.Int32)">
<summary>
Convert a 64-bit unsigned integer to 8 bytes (little-endian).
</summary>
</member>
<member name="M:KeePassLib.Utility.MemUtil.Hash32(System.Byte[],System.Int32,System.Int32)">
<summary>
Fast hash that can be used e.g. for hash tables.
The algorithm might change in the future; do not store
the hashes for later use.
</summary>
</member>
<member name="T:KeePassLib.Keys.KcpUserAccount">
<summary>
A user key depending on the currently logged on Windows user account.
</summary>
</member>
<member name="M:KeePassLib.Keys.KcpUserAccount.#ctor">
<summary>
Construct a user account key.
</summary>
</member>
<member name="P:KeePassLib.Keys.KcpUserAccount.KeyData">
<summary>
Get key data. Querying this property is fast (it returns a
reference to a cached <c>ProtectedBinary</c> object).
If no key data is available, <c>null</c> is returned.
</summary>
</member>
<member name="T:KeePassLib.Delegates.GroupHandler">
<summary>
Function definition of a method that performs an action on a group.
When traversing the internal tree, this function will be invoked
for all visited groups.
</summary>
<param name="pg">Currently visited group.</param>
<returns>You must return <c>true</c> if you want to continue the
traversal. If you want to immediately stop the whole traversal,
return <c>false</c>.</returns>
</member>
<member name="T:KeePassLib.Delegates.EntryHandler">
<summary>
Function definition of a method that performs an action on an entry.
When traversing the internal tree, this function will be invoked
for all visited entries.
</summary>
<param name="pe">Currently visited entry.</param>
<returns>You must return <c>true</c> if you want to continue the
traversal. If you want to immediately stop the whole traversal,
return <c>false</c>.</returns>
</member>
<member name="T:KeePassLib.Cryptography.Cipher.CipherPool">
<summary>
Pool of encryption/decryption algorithms (ciphers).
</summary>
</member>
<member name="M:KeePassLib.Cryptography.Cipher.CipherPool.Clear">
<summary>
Remove all cipher engines from the current pool.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.Cipher.CipherPool.AddCipher(KeePassLib.Cryptography.Cipher.ICipherEngine)">
<summary>
Add a cipher engine to the pool.
</summary>
<param name="c">Cipher engine to add. Must not be <c>null</c>.</param>
</member>
<member name="M:KeePassLib.Cryptography.Cipher.CipherPool.GetCipher(KeePassLib.PwUuid)">
<summary>
Get a cipher identified by its UUID.
</summary>
<param name="uuidCipher">UUID of the cipher to return.</param>
<returns>Reference to the requested cipher. If the cipher is
not found, <c>null</c> is returned.</returns>
</member>
<member name="M:KeePassLib.Cryptography.Cipher.CipherPool.GetCipherIndex(KeePassLib.PwUuid)">
<summary>
Get the index of a cipher. This index is temporary and should
not be stored or used to identify a cipher.
</summary>
<param name="uuidCipher">UUID of the cipher.</param>
<returns>Index of the requested cipher. Returns <c>-1</c> if
the specified cipher is not found.</returns>
</member>
<member name="M:KeePassLib.Cryptography.Cipher.CipherPool.GetCipherIndex(System.String)">
<summary>
Get the index of a cipher. This index is temporary and should
not be stored or used to identify a cipher.
</summary>
<param name="strDisplayName">Name of the cipher. Note that
multiple ciphers can have the same name. In this case, the
first matching cipher is returned.</param>
<returns>Cipher with the specified name or <c>-1</c> if
no cipher with that name is found.</returns>
</member>
<member name="P:KeePassLib.Cryptography.Cipher.CipherPool.EngineCount">
<summary>
Get the number of cipher engines in this pool.
</summary>
</member>
<member name="P:KeePassLib.Cryptography.Cipher.CipherPool.Item(System.Int32)">
<summary>
Get the cipher engine at the specified position. Throws
an exception if the index is invalid. You can use this
to iterate over all ciphers, but do not use it to
identify ciphers.
</summary>
<param name="nIndex">Index of the requested cipher engine.</param>
<returns>Reference to the cipher engine at the specified
position.</returns>
</member>
<member name="T:KeePassLib.PwDatabase">
<summary>
The core password manager class. It contains a number of groups, which
contain the actual entries.
</summary>
</member>
<member name="M:KeePassLib.PwDatabase.#ctor">
<summary>
Constructs an empty password manager object.
</summary>
</member>
<member name="M:KeePassLib.PwDatabase.New(KeePassLib.Serialization.IOConnectionInfo,KeePassLib.Keys.CompositeKey)">
<summary>
Initialize the class for managing a new database. Previously loaded
data is deleted.
</summary>
<param name="ioConnection">IO connection of the new database.</param>
<param name="pwKey">Key to open the database.</param>
</member>
<member name="M:KeePassLib.PwDatabase.Open(KeePassLib.Serialization.IOConnectionInfo,KeePassLib.Keys.CompositeKey,KeePassLib.Interfaces.IStatusLogger)">
<summary>
Open a database. The URL may point to any supported data source.
</summary>
<param name="ioSource">IO connection to load the database from.</param>
<param name="pwKey">Key used to open the specified database.</param>
<param name="slLogger">Logger, which gets all status messages.</param>
</member>
<member name="M:KeePassLib.PwDatabase.Save(KeePassLib.Interfaces.IStatusLogger)">
<summary>
Save the currently opened database. The file is written to the location
it has been opened from.
</summary>
<param name="slLogger">Logger that recieves status information.</param>
</member>
<member name="M:KeePassLib.PwDatabase.SaveAs(KeePassLib.Serialization.IOConnectionInfo,System.Boolean,KeePassLib.Interfaces.IStatusLogger)">
<summary>
Save the currently opened database to a different location. If
<paramref name="bIsPrimaryNow" /> is <c>true</c>, the specified
location is made the default location for future saves
using <c>SaveDatabase</c>.
</summary>
<param name="ioConnection">New location to serialize the database to.</param>
<param name="bIsPrimaryNow">If <c>true</c>, the new location is made the
standard location for the database. If <c>false</c>, a copy of the currently
opened database is saved to the specified location, but it isn't
made the default location (i.e. no lock files will be moved for
example).</param>
<param name="slLogger">Logger that recieves status information.</param>
</member>
<member name="M:KeePassLib.PwDatabase.Close">
<summary>
Closes the currently opened database. No confirmation message is shown
before closing. Unsaved changes will be lost.
</summary>
</member>
<member name="M:KeePassLib.PwDatabase.GetCustomIconIndex(KeePassLib.PwUuid)">
<summary>
Get the index of a custom icon.
</summary>
<param name="pwIconId">ID of the icon.</param>
<returns>Index of the icon.</returns>
</member>
<member name="M:KeePassLib.PwDatabase.GetCustomIcon(KeePassLib.PwUuid,System.Int32,System.Int32)">
<summary>
Get a custom icon. This method can return <c>null</c>,
e.g. if no cached image of the icon is available.
</summary>
<param name="pwIconId">ID of the icon.</param>
<param name="w">Width of the returned image. If this is
negative, the image is returned in its original size.</param>
<param name="h">Height of the returned image. If this is
negative, the image is returned in its original size.</param>
</member>
<member name="P:KeePassLib.PwDatabase.RootGroup">
<summary>
Get the root group that contains all groups and entries stored in the
database.
</summary>
<returns>Root group. The return value is <c>null</c>, if no database
has been opened.</returns>
</member>
<member name="P:KeePassLib.PwDatabase.IOConnectionInfo">
<summary>
<c>IOConnection</c> of the currently opened database file.
Is never <c>null</c>.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.IsOpen">
<summary>
If this is <c>true</c>, a database is currently open.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.Modified">
<summary>
Modification flag. If true, the class has been modified and the
user interface should prompt the user to save the changes before
closing the database for example.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.MasterKey">
<summary>
The user key used for database encryption. This key must be created
and set before using any of the database load/save functions.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.Name">
<summary>
Name of the database.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.Description">
<summary>
Database description.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.DefaultUserName">
<summary>
Default user name used for new entries.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.MaintenanceHistoryDays">
<summary>
Number of days until history entries are being deleted
in a database maintenance operation.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.DataCipherUuid">
<summary>
The encryption algorithm used to encrypt the data part of the database.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.Compression">
<summary>
Compression algorithm used to encrypt the data part of the database.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.MemoryProtection">
<summary>
Memory protection configuration (for default fields).
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.DeletedObjects">
<summary>
Get a list of all deleted objects.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.CustomIcons">
<summary>
Get all custom icons stored in this database.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.UINeedsIconUpdate">
<summary>
This is a dirty-flag for the UI. It is used to indicate when an
icon list update is required.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.EntryTemplatesGroup">
<summary>
UUID of the group containing template entries. May be
<c>PwUuid.Zero</c>, if no entry templates group has been specified.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.CustomData">
<summary>
Custom data container that can be used by plugins to store
own data in KeePass databases.
The data is stored in the encrypted part of encrypted
database files.
Use unique names for your items, e.g. "PluginName_ItemName".
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.PublicCustomData">
<summary>
Custom data container that can be used by plugins to store
own data in KeePass databases.
The data is stored in the *unencrypted* part of database files,
and it is not supported by all file formats (e.g. supported by KDBX,
unsupported by XML).
It is highly recommended to use <c>CustomData</c> instead,
if possible.
Use unique names for your items, e.g. "PluginName_ItemName".
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.HashOfFileOnDisk">
<summary>
Hash value of the primary file on disk (last read or last write).
A call to <c>SaveAs</c> without making the saved file primary will
not change this hash. May be <c>null</c>.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.DetachBinaries">
<summary>
Detach binaries when opening a file. If this isn't <c>null</c>,
all binaries are saved to the specified path and are removed
from the database.
</summary>
</member>
<member name="P:KeePassLib.PwDatabase.LocalizedAppName">
<summary>
Localized application name.
</summary>
</member>
<member name="M:KeePassLib.Collections.VariantDictionary.Clone">
<summary>
Create a deep copy.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.KeyDerivation.KdfParameters.Clone">
<summary>
Unsupported.
</summary>
</member>
<member name="P:KeePassLib.Cryptography.Cipher.ICipherEngine2.KeyLength">
<summary>
Length of an encryption key in bytes.
The base <c>ICipherEngine</c> assumes 32.
</summary>
</member>
<member name="P:KeePassLib.Cryptography.Cipher.ICipherEngine2.IVLength">
<summary>
Length of the initialization vector in bytes.
The base <c>ICipherEngine</c> assumes 16.
</summary>
</member>
<member name="T:KeePassLib.Keys.CompositeKey">
<summary>
Represents a key. A key can be build up using several user key data sources
like a password, a key file, the currently logged on user credentials,
the current computer ID, etc.
</summary>
</member>
<member name="M:KeePassLib.Keys.CompositeKey.#ctor">
<summary>
Construct a new, empty key object.
</summary>
</member>
<member name="M:KeePassLib.Keys.CompositeKey.AddUserKey(KeePassLib.Keys.IUserKey)">
<summary>
Add a user key.
</summary>
<param name="pKey">User key to add.</param>
</member>
<member name="M:KeePassLib.Keys.CompositeKey.RemoveUserKey(KeePassLib.Keys.IUserKey)">
<summary>
Remove a user key.
</summary>
<param name="pKey">User key to remove.</param>
<returns>Returns <c>true</c> if the key was removed successfully.</returns>
</member>
<member name="M:KeePassLib.Keys.CompositeKey.ContainsType(System.Type)">
<summary>
Test whether the composite key contains a specific type of
user keys (password, key file, ...). If at least one user
key of that type is present, the function returns <c>true</c>.
</summary>
<param name="tUserKeyType">User key type.</param>
<returns>Returns <c>true</c>, if the composite key contains
a user key of the specified type.</returns>
</member>
<member name="M:KeePassLib.Keys.CompositeKey.GetUserKey(System.Type)">
<summary>
Get the first user key of a specified type.
</summary>
<param name="tUserKeyType">Type of the user key to get.</param>
<returns>Returns the first user key of the specified type
or <c>null</c> if no key of that type is found.</returns>
</member>
<member name="M:KeePassLib.Keys.CompositeKey.CreateRawCompositeKey32">
<summary>
Creates the composite key from the supplied user key sources (password,
key file, user account, computer ID, etc.).
</summary>
</member>
<member name="M:KeePassLib.Keys.CompositeKey.GenerateKey32(KeePassLib.Cryptography.KeyDerivation.KdfParameters)">
<summary>
Generate a 32-byte (256-bit) key from the composite key.
</summary>
</member>
<member name="P:KeePassLib.Keys.CompositeKey.UserKeys">
<summary>
List of all user keys contained in the current composite key.
</summary>
</member>
<member name="M:KeePassLib.Keys.InvalidCompositeKeyException.#ctor">
<summary>
Construct a new invalid composite key exception.
</summary>
</member>
<member name="T:KeePassLib.PwGroup">
<summary>
A group containing several password entries.
</summary>
</member>
<member name="M:KeePassLib.PwGroup.#ctor">
<summary>
Construct a new, empty group.
</summary>
</member>
<member name="M:KeePassLib.PwGroup.#ctor(System.Boolean,System.Boolean)">
<summary>
Construct a new, empty group.
</summary>
<param name="bCreateNewUuid">Create a new UUID for this group.</param>
<param name="bSetTimes">Set creation, last access and last modification times to the current time.</param>
</member>
<member name="M:KeePassLib.PwGroup.#ctor(System.Boolean,System.Boolean,System.String,KeePassLib.PwIcon)">
<summary>
Construct a new group.
</summary>
<param name="bCreateNewUuid">Create a new UUID for this group.</param>
<param name="bSetTimes">Set creation, last access and last modification times to the current time.</param>
<param name="strName">Name of the new group.</param>
<param name="pwIcon">Icon of the new group.</param>
</member>
<member name="M:KeePassLib.PwGroup.CloneDeep">
<summary>
Deeply clone the current group. The returned group will be an exact
value copy of the current object (including UUID, etc.).
</summary>
<returns>Exact value copy of the current <c>PwGroup</c> object.</returns>
</member>
<member name="M:KeePassLib.PwGroup.AssignProperties(KeePassLib.PwGroup,System.Boolean,System.Boolean)">
<summary>
Assign properties to the current group based on a template group.
</summary>
<param name="pgTemplate">Template group. Must not be <c>null</c>.</param>
<param name="bOnlyIfNewer">Only set the properties of the template group
if it is newer than the current one.</param>
<param name="bAssignLocationChanged">If <c>true</c>, the
<c>LocationChanged</c> property is copied, otherwise not.</param>
</member>
<member name="M:KeePassLib.PwGroup.Touch(System.Boolean)">
<summary>
Touch the group. This function updates the internal last access
time. If the <paramref name="bModified" /> parameter is <c>true</c>,
the last modification time gets updated, too.
</summary>
<param name="bModified">Modify last modification time.</param>
</member>
<member name="M:KeePassLib.PwGroup.Touch(System.Boolean,System.Boolean)">
<summary>
Touch the group. This function updates the internal last access
time. If the <paramref name="bModified" /> parameter is <c>true</c>,
the last modification time gets updated, too.
</summary>
<param name="bModified">Modify last modification time.</param>
<param name="bTouchParents">If <c>true</c>, all parent objects
get touched, too.</param>
</member>
<member name="M:KeePassLib.PwGroup.GetCounts(System.Boolean,System.UInt32@,System.UInt32@)">
<summary>
Get number of groups and entries in the current group. This function
can also traverse through all subgroups and accumulate their counts
(recursive mode).
</summary>
<param name="bRecursive">If this parameter is <c>true</c>, all
subgroups and entries in subgroups will be counted and added to
the returned value. If it is <c>false</c>, only the number of
subgroups and entries of the current group is returned.</param>
<param name="uNumGroups">Number of subgroups.</param>
<param name="uNumEntries">Number of entries.</param>
</member>
<member name="M:KeePassLib.PwGroup.TraverseTree(KeePassLib.TraversalMethod,KeePassLib.Delegates.GroupHandler,KeePassLib.Delegates.EntryHandler)">
<summary>
Traverse the group/entry tree in the current group. Various traversal
methods are available.
</summary>
<param name="tm">Specifies the traversal method.</param>
<param name="groupHandler">Function that performs an action on
the currently visited group (see <c>GroupHandler</c> for more).
This parameter may be <c>null</c>, in this case the tree is traversed but
you don't get notifications for each visited group.</param>
<param name="entryHandler">Function that performs an action on
the currently visited entry (see <c>EntryHandler</c> for more).
This parameter may be <c>null</c>.</param>
<returns>Returns <c>true</c> if all entries and groups have been
traversed. If the traversal has been canceled by one of the two
handlers, the return value is <c>false</c>.</returns>
</member>
<member name="M:KeePassLib.PwGroup.GetFlatGroupList">
<summary>
Pack all groups into one flat linked list of references (recursively).
</summary>
<returns>Flat list of all groups.</returns>
</member>
<member name="M:KeePassLib.PwGroup.GetFlatEntryList(System.Collections.Generic.LinkedList{KeePassLib.PwGroup})">
<summary>
Pack all entries into one flat linked list of references. Temporary
group IDs are assigned automatically.
</summary>
<param name="flatGroupList">A flat group list created by
<c>GetFlatGroupList</c>.</param>
<returns>Flat list of all entries.</returns>
</member>
<member name="M:KeePassLib.PwGroup.EnableStringFieldProtection(System.String,System.Boolean)">
<summary>
Enable protection of a specific string field type.
</summary>
<param name="strFieldName">Name of the string field to protect or unprotect.</param>
<param name="bEnable">Enable protection or not.</param>
<returns>Returns <c>true</c>, if the operation completed successfully,
otherwise <c>false</c>.</returns>
</member>
<member name="M:KeePassLib.PwGroup.SearchEntries(KeePassLib.SearchParameters,KeePassLib.Collections.PwObjectList{KeePassLib.PwEntry})">
<summary>
Search this group and all subgroups for entries.
</summary>
<param name="sp">Specifies the search parameters.</param>
<param name="lResults">Entry list in which the search results
will be stored.</param>
</member>
<member name="M:KeePassLib.PwGroup.SearchEntries(KeePassLib.SearchParameters,KeePassLib.Collections.PwObjectList{KeePassLib.PwEntry},KeePassLib.Interfaces.IStatusLogger)">
<summary>
Search this group and all subgroups for entries.
</summary>
<param name="sp">Specifies the search parameters.</param>
<param name="lResults">Entry list in which the search results
will be stored.</param>
<param name="slStatus">Optional status reporting object.</param>
</member>
<member name="M:KeePassLib.PwGroup.FindGroup(KeePassLib.PwUuid,System.Boolean)">
<summary>
Find a group.
</summary>
<param name="uuid">UUID identifying the group the caller is looking for.</param>
<param name="bSearchRecursive">If <c>true</c>, the search is recursive.</param>
<returns>Returns reference to found group, otherwise <c>null</c>.</returns>
</member>
<member name="M:KeePassLib.PwGroup.FindObject(KeePassLib.PwUuid,System.Boolean,System.Nullable{System.Boolean})">
<summary>
Find an object.
</summary>
<param name="uuid">UUID of the object to find.</param>
<param name="bRecursive">Specifies whether to search recursively.</param>
<param name="bEntries">If <c>null</c>, groups and entries are
searched. If <c>true</c>, only entries are searched. If <c>false</c>,
only groups are searched.</param>
<returns>Reference to the object, if found. Otherwise <c>null</c>.</returns>
</member>
<member name="M:KeePassLib.PwGroup.FindCreateGroup(System.String,System.Boolean)">
<summary>
Try to find a subgroup and create it, if it doesn't exist yet.
</summary>
<param name="strName">Name of the subgroup.</param>
<param name="bCreateIfNotFound">If the group isn't found: create it.</param>
<returns>Returns a reference to the requested group or <c>null</c> if
it doesn't exist and shouldn't be created.</returns>
</member>
<member name="M:KeePassLib.PwGroup.FindEntry(KeePassLib.PwUuid,System.Boolean)">
<summary>
Find an entry.
</summary>
<param name="uuid">UUID identifying the entry the caller is looking for.</param>
<param name="bSearchRecursive">If <c>true</c>, the search is recursive.</param>
<returns>Returns reference to found entry, otherwise <c>null</c>.</returns>
</member>
<member name="M:KeePassLib.PwGroup.GetFullPath">
<summary>
Get the full path of a group.
</summary>
<returns>Full path of the group.</returns>
</member>
<member name="M:KeePassLib.PwGroup.GetFullPath(System.String,System.Boolean)">
<summary>
Get the full path of a group.
</summary>
<param name="strSeparator">String that separates the group
names.</param>
<param name="bIncludeTopMostGroup">Specifies whether the returned
path starts with the topmost group.</param>
<returns>Full path of the group.</returns>
</member>
<member name="M:KeePassLib.PwGroup.CreateNewItemUuids(System.Boolean,System.Boolean,System.Boolean)">
<summary>
Assign new UUIDs to groups and entries.
</summary>
<param name="bNewGroups">Create new UUIDs for subgroups.</param>
<param name="bNewEntries">Create new UUIDs for entries.</param>
<param name="bRecursive">Recursive tree traversal.</param>
</member>
<member name="M:KeePassLib.PwGroup.FindCreateSubTree(System.String,System.Char[])">
<summary>
Find/create a subtree of groups.
</summary>
<param name="strTree">Tree string.</param>
<param name="vSeparators">Separators that delimit groups in the
<c>strTree</c> parameter.</param>
</member>
<member name="M:KeePassLib.PwGroup.GetLevel">
<summary>
Get the level of the group (i.e. the number of parent groups).
</summary>
<returns>Number of parent groups.</returns>
</member>
<member name="M:KeePassLib.PwGroup.GetGroups(System.Boolean)">
<summary>
Get a list of subgroups (not including this one).
</summary>
<param name="bRecursive">If <c>true</c>, subgroups are added
recursively, i.e. all child groups are returned, too.</param>
<returns>List of subgroups. If <paramref name="bRecursive" /> is
<c>true</c>, it is guaranteed that subsubgroups appear after
subgroups.</returns>
</member>
<member name="M:KeePassLib.PwGroup.GetObjects(System.Boolean,System.Nullable{System.Boolean})">
<summary>
Get objects contained in this group.
</summary>
<param name="bRecursive">Specifies whether to search recursively.</param>
<param name="bEntries">If <c>null</c>, the returned list contains
groups and entries. If <c>true</c>, the returned list contains only
entries. If <c>false</c>, the returned list contains only groups.</param>
<returns>List of objects.</returns>
</member>
<member name="M:KeePassLib.PwGroup.AddGroup(KeePassLib.PwGroup,System.Boolean)">
<summary>
Add a subgroup to this group.
</summary>
<param name="subGroup">Group to be added. Must not be <c>null</c>.</param>
<param name="bTakeOwnership">If this parameter is <c>true</c>, the
parent group reference of the subgroup will be set to the current
group (i.e. the current group takes ownership of the subgroup).</param>
</member>
<member name="M:KeePassLib.PwGroup.AddGroup(KeePassLib.PwGroup,System.Boolean,System.Boolean)">
<summary>
Add a subgroup to this group.
</summary>
<param name="subGroup">Group to be added. Must not be <c>null</c>.</param>
<param name="bTakeOwnership">If this parameter is <c>true</c>, the
parent group reference of the subgroup will be set to the current
group (i.e. the current group takes ownership of the subgroup).</param>
<param name="bUpdateLocationChangedOfSub">If <c>true</c>, the
<c>LocationChanged</c> property of the subgroup is updated.</param>
</member>
<member name="M:KeePassLib.PwGroup.AddEntry(KeePassLib.PwEntry,System.Boolean)">
<summary>
Add an entry to this group.
</summary>
<param name="pe">Entry to be added. Must not be <c>null</c>.</param>
<param name="bTakeOwnership">If this parameter is <c>true</c>, the
parent group reference of the entry will be set to the current
group (i.e. the current group takes ownership of the entry).</param>
</member>
<member name="M:KeePassLib.PwGroup.AddEntry(KeePassLib.PwEntry,System.Boolean,System.Boolean)">
<summary>
Add an entry to this group.
</summary>
<param name="pe">Entry to be added. Must not be <c>null</c>.</param>
<param name="bTakeOwnership">If this parameter is <c>true</c>, the
parent group reference of the entry will be set to the current
group (i.e. the current group takes ownership of the entry).</param>
<param name="bUpdateLocationChangedOfEntry">If <c>true</c>, the
<c>LocationChanged</c> property of the entry is updated.</param>
</member>
<member name="P:KeePassLib.PwGroup.Uuid">
<summary>
UUID of this group.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.Name">
<summary>
The name of this group. Cannot be <c>null</c>.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.Notes">
<summary>
Comments about this group. Cannot be <c>null</c>.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.IconId">
<summary>
Icon of the group.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.CustomIconUuid">
<summary>
Get the custom icon ID. This value is 0, if no custom icon is
being used (i.e. the icon specified by the <c>IconID</c> property
should be displayed).
</summary>
</member>
<member name="P:KeePassLib.PwGroup.ParentGroup">
<summary>
Reference to the group to which this group belongs. May be <c>null</c>.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.LocationChanged">
<summary>
The date/time when the location of the object was last changed.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.IsExpanded">
<summary>
A flag that specifies if the group is shown as expanded or
collapsed in the user interface.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.CreationTime">
<summary>
The date/time when this group was created.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.LastModificationTime">
<summary>
The date/time when this group was last modified.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.LastAccessTime">
<summary>
The date/time when this group was last accessed (read).
</summary>
</member>
<member name="P:KeePassLib.PwGroup.ExpiryTime">
<summary>
The date/time when this group expires.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.Expires">
<summary>
Flag that determines if the group expires.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.UsageCount">
<summary>
Get or set the usage count of the group. To increase the usage
count by one, use the <c>Touch</c> function.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.Groups">
<summary>
Get a list of subgroups in this group.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.Entries">
<summary>
Get a list of entries in this group.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.IsVirtual">
<summary>
A flag specifying whether this group is virtual or not. Virtual
groups can contain links to entries stored in other groups.
Note that this flag has to be interpreted and set by the calling
code; it won't prevent you from accessing and modifying the list
of entries in this group in any way.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.DefaultAutoTypeSequence">
<summary>
Default auto-type keystroke sequence for all entries in
this group. This property can be an empty string, which
means that the value should be inherited from the parent.
</summary>
</member>
<member name="P:KeePassLib.PwGroup.CustomData">
<summary>
Custom data container that can be used by plugins to store
own data in KeePass groups.
The data is stored in the encrypted part of encrypted
database files.
Use unique names for your items, e.g. "PluginName_ItemName".
</summary>
</member>
<member name="T:KeePassLib.Resources.KSRes">
<summary>
A strongly-typed resource class, for looking up localized strings, etc.
</summary>
</member>
<member name="P:KeePassLib.Resources.KSRes.Test">
<summary>
Look up a localized string similar to
'Test'.
</summary>
</member>
<member name="T:KeePassLib.PwCustomIcon">
<summary>
Custom icon. <c>PwCustomIcon</c> objects are immutable.
</summary>
</member>
<member name="M:KeePassLib.PwCustomIcon.GetImage">
<summary>
Get the icon as an <c>Image</c> (original size).
</summary>
</member>
<member name="M:KeePassLib.PwCustomIcon.GetImage(System.Int32,System.Int32)">
<summary>
Get the icon as an <c>Image</c> (with the specified size).
</summary>
<param name="w">Width of the returned image.</param>
<param name="h">Height of the returned image.</param>
</member>
<member name="T:KeePassLib.Cryptography.QualityEstimation">
<summary>
A class that offers static functions to estimate the quality of
passwords.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.QualityEstimation.EstimatePasswordBits(System.Char[])">
<summary>
Estimate the quality of a password.
</summary>
<param name="vPassword">Password to check.</param>
<returns>Estimated bit-strength of the password.</returns>
</member>
<member name="M:KeePassLib.Cryptography.QualityEstimation.EstimatePasswordBits(System.Byte[])">
<summary>
Estimate the quality of a password.
</summary>
<param name="pbUnprotectedUtf8">Password to check, UTF-8 encoded.</param>
<returns>Estimated bit-strength of the password.</returns>
</member>
<member name="T:KeePassLib.Serialization.KdbxFormat">
<summary>
The <c>KdbxFile</c> class supports saving the data to various
formats.
</summary>
</member>
<member name="F:KeePassLib.Serialization.KdbxFormat.Default">
<summary>
The default, encrypted file format.
</summary>
</member>
<member name="F:KeePassLib.Serialization.KdbxFormat.PlainXml">
<summary>
Use this flag when exporting data to a plain-text XML file.
</summary>
</member>
<member name="P:KeePassLib.Serialization.BinaryReaderEx.CopyDataTo">
<summary>
If this property is set to a non-null stream, all data that
is read from the input stream is automatically written to
the copy stream (before returning the read data).
</summary>
</member>
<member name="T:KeePassLib.PwUuid">
<summary>
Represents an UUID of a password entry or group. Once created,
<c>PwUuid</c> objects aren't modifyable anymore (immutable).
</summary>
</member>
<member name="F:KeePassLib.PwUuid.UuidSize">
<summary>
Standard size in bytes of a UUID.
</summary>
</member>
<member name="F:KeePassLib.PwUuid.Zero">
<summary>
Zero UUID (all bytes are zero).
</summary>
</member>
<member name="M:KeePassLib.PwUuid.#ctor(System.Boolean)">
<summary>
Construct a new UUID object.
</summary>
<param name="bCreateNew">If this parameter is <c>true</c>, a new
UUID is generated. If it is <c>false</c>, the UUID is initialized
to zero.</param>
</member>
<member name="M:KeePassLib.PwUuid.#ctor(System.Byte[])">
<summary>
Construct a new UUID object.
</summary>
<param name="uuidBytes">Initial value of the <c>PwUuid</c> object.</param>
</member>
<member name="M:KeePassLib.PwUuid.CreateNew">
<summary>
Create a new, random UUID.
</summary>
<returns>Returns <c>true</c> if a random UUID has been generated,
otherwise it returns <c>false</c>.</returns>
</member>
<member name="M:KeePassLib.PwUuid.ToHexString">
<summary>
Convert the UUID to its string representation.
</summary>
<returns>String containing the UUID value.</returns>
</member>
<member name="P:KeePassLib.PwUuid.UuidBytes">
<summary>
Get the 16 UUID bytes.
</summary>
</member>
<member name="P:KeePassLib.Keys.KcpCustomKey.Name">
<summary>
Name of the provider that generated the custom key.
</summary>
</member>
<member name="T:KeePassLib.PwCompressionAlgorithm">
<summary>
Compression algorithm specifiers.
</summary>
</member>
<member name="F:KeePassLib.PwCompressionAlgorithm.None">
<summary>
No compression.
</summary>
</member>
<member name="F:KeePassLib.PwCompressionAlgorithm.GZip">
<summary>
GZip compression.
</summary>
</member>
<member name="F:KeePassLib.PwCompressionAlgorithm.Count">
<summary>
Virtual field: currently known number of algorithms. Should not be used
by plugins or libraries -- it's used internally only.
</summary>
</member>
<member name="T:KeePassLib.TraversalMethod">
<summary>
Tree traversal methods.
</summary>
</member>
<member name="F:KeePassLib.TraversalMethod.None">
<summary>
Don't traverse the tree.
</summary>
</member>
<member name="F:KeePassLib.TraversalMethod.PreOrder">
<summary>
Traverse the tree in pre-order mode, i.e. first visit all items
in the current node, then visit all subnodes.
</summary>
</member>
<member name="T:KeePassLib.PwMergeMethod">
<summary>
Methods for merging password databases/entries.
</summary>
</member>
<member name="T:KeePassLib.PwIcon">
<summary>
Icon identifiers for groups and password entries.
</summary>
</member>
<member name="F:KeePassLib.PwIcon.Count">
<summary>
Virtual identifier -- represents the number of icons.
</summary>
</member>
<member name="F:KeePassLib.ProxyAuthType.Default">
<summary>
Use default user credentials (provided by the system).
</summary>
</member>
<member name="F:KeePassLib.ProxyAuthType.Auto">
<summary>
<c>Default</c> or <c>Manual</c>, depending on whether
manual credentials are available.
This type exists for supporting upgrading from KeePass
2.28 to 2.29; the user cannot select this type.
</summary>
</member>
<member name="T:KeePassLib.MemProtCmpMode">
<summary>
Comparison modes for in-memory protected objects.
</summary>
</member>
<member name="F:KeePassLib.MemProtCmpMode.None">
<summary>
Ignore the in-memory protection states.
</summary>
</member>
<member name="F:KeePassLib.MemProtCmpMode.CustomOnly">
<summary>
Ignore the in-memory protection states of standard
objects; do compare in-memory protection states of
custom objects.
</summary>
</member>
<member name="F:KeePassLib.MemProtCmpMode.Full">
<summary>
Compare in-memory protection states.
</summary>
</member>
<member name="F:KeePassLib.PwCompareOptions.NullEmptyEquivStd">
<summary>
Empty standard string fields are considered to be the
same as non-existing standard string fields.
This doesn't affect custom string comparisons.
</summary>
</member>
<member name="F:KeePassLib.IOAccessType.Read">
<summary>
The IO connection is being opened for reading.
</summary>
</member>
<member name="F:KeePassLib.IOAccessType.Write">
<summary>
The IO connection is being opened for writing.
</summary>
</member>
<member name="F:KeePassLib.IOAccessType.Exists">
<summary>
The IO connection is being opened for testing
whether a file/object exists.
</summary>
</member>
<member name="F:KeePassLib.IOAccessType.Delete">
<summary>
The IO connection is being opened for deleting a file/object.
</summary>
</member>
<member name="F:KeePassLib.IOAccessType.Move">
<summary>
The IO connection is being opened for renaming/moving a file/object.
</summary>
</member>
<member name="F:KeePassLib.AppRunFlags.GCKeepAlive">
<summary>
This flag prevents any handles being garbage-collected
before the started process has terminated, without
blocking the current thread.
</summary>
</member>
<member name="F:KeePassLib.ScaleTransformFlags.UIIcon">
<summary>
<c>UIIcon</c> indicates that the returned image is going
to be displayed as icon in the UI and that it is not
subject to future changes in size.
</summary>
</member>
<member name="T:KeePassLib.PwEntry">
<summary>
A class representing a password entry. A password entry consists of several
fields like title, user name, password, etc. Each password entry has a
unique ID (UUID).
</summary>
</member>
<member name="M:KeePassLib.PwEntry.#ctor(System.Boolean,System.Boolean)">
<summary>
Construct a new, empty password entry. Member variables will be initialized
to their default values.
</summary>
<param name="bCreateNewUuid">If <c>true</c>, a new UUID will be created
for this entry. If <c>false</c>, the UUID is zero and you must set it
manually later.</param>
<param name="bSetTimes">If <c>true</c>, the creation, last modification
and last access times will be set to the current system time.</param>
</member>
<member name="M:KeePassLib.PwEntry.#ctor(KeePassLib.PwGroup,System.Boolean,System.Boolean)">
<summary>
Construct a new, empty password entry. Member variables will be initialized
to their default values.
</summary>
<param name="pwParentGroup">Reference to the containing group, this
parameter may be <c>null</c> and set later manually.</param>
<param name="bCreateNewUuid">If <c>true</c>, a new UUID will be created
for this entry. If <c>false</c>, the UUID is zero and you must set it
manually later.</param>
<param name="bSetTimes">If <c>true</c>, the creation, last modification
and last access times will be set to the current system time.</param>
</member>
<member name="M:KeePassLib.PwEntry.CloneDeep">
<summary>
Clone the current entry. The returned entry is an exact value copy
of the current entry (including UUID and parent group reference).
All mutable members are cloned.
</summary>
<returns>Exact value clone. All references to mutable values changed.</returns>
</member>
<member name="M:KeePassLib.PwEntry.AssignProperties(KeePassLib.PwEntry,System.Boolean,System.Boolean,System.Boolean)">
<summary>
Assign properties to the current entry based on a template entry.
</summary>
<param name="peTemplate">Template entry. Must not be <c>null</c>.</param>
<param name="bOnlyIfNewer">Only set the properties of the template entry
if it is newer than the current one.</param>
<param name="bIncludeHistory">If <c>true</c>, the history will be
copied, too.</param>
<param name="bAssignLocationChanged">If <c>true</c>, the
<c>LocationChanged</c> property is copied, otherwise not.</param>
</member>
<member name="M:KeePassLib.PwEntry.Touch(System.Boolean)">
<summary>
Touch the entry. This function updates the internal last access
time. If the <paramref name="bModified" /> parameter is <c>true</c>,
the last modification time gets updated, too.
</summary>
<param name="bModified">Modify last modification time.</param>
</member>
<member name="M:KeePassLib.PwEntry.Touch(System.Boolean,System.Boolean)">
<summary>
Touch the entry. This function updates the internal last access
time. If the <paramref name="bModified" /> parameter is <c>true</c>,
the last modification time gets updated, too.
</summary>
<param name="bModified">Modify last modification time.</param>
<param name="bTouchParents">If <c>true</c>, all parent objects
get touched, too.</param>
</member>
<member name="M:KeePassLib.PwEntry.CreateBackup">
<summary>
Create a backup of this entry. The backup item doesn't contain any
history items.
</summary>
</member>
<member name="M:KeePassLib.PwEntry.CreateBackup(KeePassLib.PwDatabase)">
<summary>
Create a backup of this entry. The backup item doesn't contain any
history items.
<param name="pwHistMntcSettings">If this parameter isn't <c>null</c>,
the history list is maintained automatically (i.e. old backups are
deleted if there are too many or the history size is too large).
This parameter may be <c>null</c> (no maintenance then).</param>
</summary>
</member>
<member name="M:KeePassLib.PwEntry.RestoreFromBackup(System.UInt32)">
<summary>
Restore an entry snapshot from backups.
</summary>
<param name="uBackupIndex">Index of the backup item, to which
should be reverted.</param>
</member>
<member name="M:KeePassLib.PwEntry.RestoreFromBackup(System.UInt32,KeePassLib.PwDatabase)">
<summary>
Restore an entry snapshot from backups.
</summary>
<param name="uBackupIndex">Index of the backup item, to which
should be reverted.</param>
<param name="pwHistMntcSettings">If this parameter isn't <c>null</c>,
the history list is maintained automatically (i.e. old backups are
deleted if there are too many or the history size is too large).
This parameter may be <c>null</c> (no maintenance then).</param>
</member>
<member name="M:KeePassLib.PwEntry.MaintainBackups(KeePassLib.PwDatabase)">
<summary>
Delete old history items if there are too many or the history
size is too large.
<returns>If one or more history items have been deleted, <c>true</c>
is returned. Otherwise <c>false</c>.</returns>
</summary>
</member>
<member name="M:KeePassLib.PwEntry.GetSize">
<summary>
Approximate the total size (in process memory) of this entry
in bytes (including strings, binaries and history entries).
</summary>
<returns>Size in bytes.</returns>
</member>
<member name="P:KeePassLib.PwEntry.Uuid">
<summary>
UUID of this entry.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.ParentGroup">
<summary>
Reference to a group which contains the current entry.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.LocationChanged">
<summary>
The date/time when the location of the object was last changed.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.Strings">
<summary>
Get or set all entry strings.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.Binaries">
<summary>
Get or set all entry binaries.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.AutoType">
<summary>
Get or set all auto-type window/keystroke sequence associations.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.History">
<summary>
Get all previous versions of this entry (backups).
</summary>
</member>
<member name="P:KeePassLib.PwEntry.IconId">
<summary>
Image ID specifying the icon that will be used for this entry.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.CustomIconUuid">
<summary>
Get the custom icon ID. This value is 0, if no custom icon is
being used (i.e. the icon specified by the <c>IconID</c> property
should be displayed).
</summary>
</member>
<member name="P:KeePassLib.PwEntry.ForegroundColor">
<summary>
Get or set the foreground color of this entry.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.BackgroundColor">
<summary>
Get or set the background color of this entry.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.CreationTime">
<summary>
The date/time when this entry was created.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.LastModificationTime">
<summary>
The date/time when this entry was last modified.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.LastAccessTime">
<summary>
The date/time when this entry was last accessed (read).
</summary>
</member>
<member name="P:KeePassLib.PwEntry.ExpiryTime">
<summary>
The date/time when this entry expires. Use the <c>Expires</c> property
to specify if the entry does actually expire or not.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.Expires">
<summary>
Specifies whether the entry expires or not.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.UsageCount">
<summary>
Get or set the usage count of the entry. To increase the usage
count by one, use the <c>Touch</c> function.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.OverrideUrl">
<summary>
Entry-specific override URL. If this string is non-empty,
</summary>
</member>
<member name="P:KeePassLib.PwEntry.Tags">
<summary>
List of tags associated with this entry.
</summary>
</member>
<member name="P:KeePassLib.PwEntry.CustomData">
<summary>
Custom data container that can be used by plugins to store
own data in KeePass entries.
The data is stored in the encrypted part of encrypted
database files.
Use unique names for your items, e.g. "PluginName_ItemName".
</summary>
</member>
<member name="T:KeePassLib.Security.ProtectedString">
<summary>
A string that is protected in process memory.
<c>ProtectedString</c> objects are immutable and thread-safe.
</summary>
</member>
<member name="M:KeePassLib.Security.ProtectedString.#ctor">
<summary>
Construct a new protected string object. Protection is
disabled.
</summary>
</member>
<member name="M:KeePassLib.Security.ProtectedString.#ctor(System.Boolean,System.String)">
<summary>
Construct a new protected string. The string is initialized
to the value supplied in the parameters.
</summary>
<param name="bEnableProtection">If this parameter is <c>true</c>,
the string will be protected in memory (encrypted). If it
is <c>false</c>, the string will be stored as plain-text.</param>
<param name="strValue">The initial string value.</param>
</member>
<member name="M:KeePassLib.Security.ProtectedString.#ctor(System.Boolean,System.Byte[])">
<summary>
Construct a new protected string. The string is initialized
to the value supplied in the parameters (UTF-8 encoded string).
</summary>
<param name="bEnableProtection">If this parameter is <c>true</c>,
the string will be protected in memory (encrypted). If it
is <c>false</c>, the string will be stored as plain-text.</param>
<param name="vUtf8Value">The initial string value, encoded as
UTF-8 byte array. This parameter won't be modified; the caller
is responsible for clearing it.</param>
</member>
<member name="M:KeePassLib.Security.ProtectedString.#ctor(System.Boolean,KeePassLib.Security.XorredBuffer)">
<summary>
Construct a new protected string. The string is initialized
to the value passed in the <c>XorredBuffer</c> object.
</summary>
<param name="bEnableProtection">Enable protection or not.</param>
<param name="xb"><c>XorredBuffer</c> object containing the
string in UTF-8 representation. The UTF-8 string must not
be <c>null</c>-terminated.</param>
</member>
<member name="M:KeePassLib.Security.ProtectedString.ReadString">
<summary>
Convert the protected string to a standard string object.
Be careful with this function, as the returned string object
isn't protected anymore and stored in plain-text in the
process memory.
</summary>
<returns>Plain-text string. Is never <c>null</c>.</returns>
</member>
<member name="M:KeePassLib.Security.ProtectedString.ReadChars">
<summary>
Read out the string and return it as a char array.
The returned array is not protected and should be cleared by
the caller.
</summary>
<returns>Plain-text char array.</returns>
</member>
<member name="M:KeePassLib.Security.ProtectedString.ReadUtf8">
<summary>
Read out the string and return a byte array that contains the
string encoded using UTF-8.
The returned array is not protected and should be cleared by
the caller.
</summary>
<returns>Plain-text UTF-8 byte array.</returns>
</member>
<member name="M:KeePassLib.Security.ProtectedString.ReadXorredString(KeePassLib.Cryptography.CryptoRandomStream)">
<summary>
Get the string as an UTF-8 sequence xorred with bytes
from a <c>CryptoRandomStream</c>.
</summary>
</member>
<member name="P:KeePassLib.Security.ProtectedString.Empty">
<summary>
Get an empty <c>ProtectedString</c> object, without protection.
</summary>
</member>
<member name="P:KeePassLib.Security.ProtectedString.EmptyEx">
<summary>
Get an empty <c>ProtectedString</c> object, with protection turned on.
</summary>
</member>
<member name="P:KeePassLib.Security.ProtectedString.IsProtected">
<summary>
A flag specifying whether the <c>ProtectedString</c> object
has turned on memory protection or not.
</summary>
</member>
<member name="P:KeePassLib.Security.ProtectedString.Length">
<summary>
Length of the protected string, in characters.
</summary>
</member>
<member name="T:KeePassLib.Security.ProtectedBinary">
<summary>
A protected binary, i.e. a byte array that is encrypted in memory.
A <c>ProtectedBinary</c> object is immutable and thread-safe.
</summary>
</member>
<member name="M:KeePassLib.Security.ProtectedBinary.#ctor">
<summary>
Construct a new, empty protected binary data object.
Protection is disabled.
</summary>
</member>
<member name="M:KeePassLib.Security.ProtectedBinary.#ctor(System.Boolean,System.Byte[])">
<summary>
Construct a new protected binary data object.
</summary>
<param name="bEnableProtection">If this paremeter is <c>true</c>,
the data will be encrypted in memory. If it is <c>false</c>, the
data is stored in plain-text in the process memory.</param>
<param name="pbData">Value of the protected object.
The input parameter is not modified and
<c>ProtectedBinary</c> doesn't take ownership of the data,
i.e. the caller is responsible for clearing it.</param>
</member>
<member name="M:KeePassLib.Security.ProtectedBinary.#ctor(System.Boolean,System.Byte[],System.Int32,System.Int32)">
<summary>
Construct a new protected binary data object.
</summary>
<param name="bEnableProtection">If this paremeter is <c>true</c>,
the data will be encrypted in memory. If it is <c>false</c>, the
data is stored in plain-text in the process memory.</param>
<param name="pbData">Value of the protected object.
The input parameter is not modified and
<c>ProtectedBinary</c> doesn't take ownership of the data,
i.e. the caller is responsible for clearing it.</param>
<param name="iOffset">Offset for <paramref name="pbData" />.</param>
<param name="cbSize">Size for <paramref name="pbData" />.</param>
</member>
<member name="M:KeePassLib.Security.ProtectedBinary.#ctor(System.Boolean,KeePassLib.Security.XorredBuffer)">
<summary>
Construct a new protected binary data object.
Copy the data from a <c>XorredBuffer</c> object.
</summary>
<param name="bEnableProtection">Enable protection or not.</param>
<param name="xb"><c>XorredBuffer</c> object containing the data.</param>
</member>
<member name="M:KeePassLib.Security.ProtectedBinary.ReadData">
<summary>
Get a copy of the protected data as a byte array.
Please note that the returned byte array is not protected and
can therefore been read by any other application.
Make sure that your clear it properly after usage.
</summary>
<returns>Unprotected byte array. This is always a copy of the internal
protected data and can therefore be cleared safely.</returns>
</member>
<member name="M:KeePassLib.Security.ProtectedBinary.ReadXorredData(KeePassLib.Cryptography.CryptoRandomStream)">
<summary>
Get the data xorred with bytes from a <c>CryptoRandomStream</c>.
</summary>
</member>
<member name="P:KeePassLib.Security.ProtectedBinary.ExtCrypt">
<summary>
A plugin can provide a custom memory protection method
by assigning a non-null delegate to this property.
</summary>
</member>
<member name="P:KeePassLib.Security.ProtectedBinary.IsProtected">
<summary>
A flag specifying whether the <c>ProtectedBinary</c> object has
turned on memory protection or not.
</summary>
</member>
<member name="P:KeePassLib.Security.ProtectedBinary.Length">
<summary>
Length of the stored data.
</summary>
</member>
<member name="T:KeePassLib.Cryptography.SelfTest">
<summary>
Class containing self-test methods.
</summary>
</member>
<member name="M:KeePassLib.Cryptography.SelfTest.Perform">
<summary>
Perform a self-test.
</summary>
</member>
<member name="T:KeePassLib.Utility.AppLogEx">
<summary>
Application-wide logging services.
</summary>
</member>
<member name="T:KeePassLib.PwDeletedObject">
<summary>
Represents an object that has been deleted.
</summary>
</member>
<member name="M:KeePassLib.PwDeletedObject.#ctor">
<summary>
Construct a new <c>PwDeletedObject</c> object.
</summary>
</member>
<member name="M:KeePassLib.PwDeletedObject.CloneDeep">
<summary>
Clone the object.
</summary>
<returns>Value copy of the current object.</returns>
</member>
<member name="P:KeePassLib.PwDeletedObject.Uuid">
<summary>
UUID of the entry that has been deleted.
</summary>
</member>
<member name="P:KeePassLib.PwDeletedObject.DeletionTime">
<summary>
The date/time when the entry has been deleted.
</summary>
</member>
<member name="T:KeePassLib.Keys.KcpPassword">
<summary>
Master password/passphrase as provided by the user.
</summary>
</member>
<member name="P:KeePassLib.Keys.KcpPassword.Password">
<summary>
Get the password as protected string. This is <c>null</c>
unless remembering the password has been turned on.
</summary>
</member>
<member name="P:KeePassLib.Keys.KcpPassword.KeyData">
<summary>
Get key data. Querying this property is fast (it returns a
reference to a cached <c>ProtectedBinary</c> object).
If no key data is available, <c>null</c> is returned.
</summary>
</member>
<member name="T:KeePassLib.Keys.KcpKeyFile">
<summary>
Key files as provided by the user.
</summary>
</member>
<member name="M:KeePassLib.Keys.KcpKeyFile.Create(System.String,System.Byte[])">
<summary>
Create a new, random key-file.
</summary>
<param name="strFilePath">Path where the key-file should be saved to.
If the file exists already, it will be overwritten.</param>
<param name="pbAdditionalEntropy">Additional entropy used to generate
the random key. May be <c>null</c> (in this case only the KeePass-internal
random number generator is used).</param>
<returns>Returns a <c>FileSaveResult</c> error code.</returns>
</member>
<member name="P:KeePassLib.Keys.KcpKeyFile.Path">
<summary>
Path to the key file.
</summary>
</member>
<member name="P:KeePassLib.Keys.KcpKeyFile.KeyData">
<summary>
Get key data. Querying this property is fast (it returns a
reference to a cached <c>ProtectedBinary</c> object).
If no key data is available, <c>null</c> is returned.
</summary>
</member>
<member name="T:KeePassLib.Collections.ProtectedBinaryDictionary">
<summary>
A list of <c>ProtectedBinary</c> objects (dictionary).
</summary>
</member>
<member name="M:KeePassLib.Collections.ProtectedBinaryDictionary.#ctor">
<summary>
Construct a new list of protected binaries.
</summary>
</member>
<member name="M:KeePassLib.Collections.ProtectedBinaryDictionary.CloneDeep">
<summary>
Clone the current <c>ProtectedBinaryList</c> object, including all
stored protected strings.
</summary>
<returns>New <c>ProtectedBinaryList</c> object.</returns>
</member>
<member name="M:KeePassLib.Collections.ProtectedBinaryDictionary.Get(System.String)">
<summary>
Get one of the stored binaries.
</summary>
<param name="strName">Binary identifier.</param>
<returns>Protected binary. If the binary identified by
<paramref name="strName"/> cannot be found, the function
returns <c>null</c>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input
parameter is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.ProtectedBinaryDictionary.Set(System.String,KeePassLib.Security.ProtectedBinary)">
<summary>
Set a binary object.
</summary>
<param name="strField">Identifier of the binary field to modify.</param>
<param name="pbNewValue">New value. This parameter must not be <c>null</c>.</param>
<exception cref="T:System.ArgumentNullException">Thrown if any of the input
parameters is <c>null</c>.</exception>
</member>
<member name="M:KeePassLib.Collections.ProtectedBinaryDictionary.Remove(System.String)">
<summary>
Remove a binary object.
</summary>
<param name="strField">Identifier of the binary field to remove.</param>
<returns>Returns <c>true</c> if the object has been successfully
removed, otherwise <c>false</c>.</returns>
<exception cref="T:System.ArgumentNullException">Thrown if the input parameter
is <c>null</c>.</exception>
</member>
<member name="P:KeePassLib.Collections.ProtectedBinaryDictionary.UCount">
<summary>
Get the number of binaries in this entry.
</summary>
</member>
</members>
</doc>
|