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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* This file defines functions associated with the PKIX_CertSelector and the
* PKIX_ComCertSelParams types.
*
*/
#ifndef _PKIX_CERTSEL_H
#define _PKIX_CERTSEL_H
#include "pkixt.h"
#ifdef __cplusplus
extern "C" {
#endif
/* General
*
* Please refer to the libpkix Programmer's Guide for detailed information
* about how to use the libpkix library. Certain key warnings and notices from
* that document are repeated here for emphasis.
*
* All identifiers in this file (and all public identifiers defined in
* libpkix) begin with "PKIX_". Private identifiers only intended for use
* within the library begin with "pkix_".
*
* A function returns NULL upon success, and a PKIX_Error pointer upon failure.
*
* Unless otherwise noted, for all accessor (gettor) functions that return a
* PKIX_PL_Object pointer, callers should assume that this pointer refers to a
* shared object. Therefore, the caller should treat this shared object as
* read-only and should not modify this shared object. When done using the
* shared object, the caller should release the reference to the object by
* using the PKIX_PL_Object_DecRef function.
*
* While a function is executing, if its arguments (or anything referred to by
* its arguments) are modified, free'd, or destroyed, the function's behavior
* is undefined.
*
*/
/* PKIX_CertSelector
*
* PKIX_CertSelectors provide a standard way for the caller to select
* certificates based on particular criteria. A CertSelector is typically used
* by the caller to specify the constraints they wish to impose on the target
* certificate in a chain. (see pkix_params.h) A CertSelector is also often
* used to retrieve certificates from a CertStore that match the selector's
* criteria. (See pkix_certstore.h) For example, the caller may wish to only
* select those certificates that have a particular Subject Distinguished Name
* and a particular value for a private certificate extension. The
* MatchCallback allows the caller to specify the custom matching logic to be
* used by a CertSelector.
*
* By default, the MatchCallback is set to point to the default implementation
* provided by libpkix, which understands how to process the most common
* parameters. If the default implementation is used, the caller should set
* these common parameters using PKIX_CertSelector_SetCommonCertSelectorParams.
* Any common parameter that is not set is assumed to be disabled, which means
* the default MatchCallback implementation will select all certificates
* without regard to that particular disabled parameter. For example, if the
* SerialNumber parameter is not set, MatchCallback will not filter out any
* certificate based on its serial number. As such, if no parameters are set,
* all are disabled and any certificate will match. If a parameter is
* disabled, its associated PKIX_ComCertSelParams_Get* function returns a
* default value of NULL, or -1 for PKIX_ComCertSelParams_GetBasicConstraints
* and PKIX_ComCertSelParams_GetVersion, or 0 for
* PKIX_ComCertSelParams_GetKeyUsage.
*
* If a custom implementation is desired, the default implementation can be
* overridden by calling PKIX_CertSelector_SetMatchCallback. In this case, the
* CertSelector can be initialized with a certSelectorContext, which is where
* the caller can specify the desired parameters the caller wishes to match
* against. Note that this certSelectorContext must be an Object (although any
* object type), allowing it to be reference-counted and allowing it to
* provide the standard Object functions (Equals, Hashcode, ToString, Compare,
* Duplicate).
*
*/
/*
* FUNCTION: PKIX_CertSelector_MatchCallback
* DESCRIPTION:
*
* This callback function determines whether the specified Cert pointed to by
* "cert" matches the criteria of the CertSelector pointed to by "selector".
* If the Cert does not matches the CertSelector's criteria, an exception will
* be thrown.
*
* PARAMETERS:
* "selector"
* Address of CertSelector whose MatchCallback logic and parameters are
* to be used. Must be non-NULL.
* "cert"
* Address of Cert that is to be matched using "selector".
* Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Thread Safe
*
* Multiple threads must be able to safely call this function without
* worrying about conflicts, even if they're operating on the same object.
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
typedef PKIX_Error *
(*PKIX_CertSelector_MatchCallback)(
PKIX_CertSelector *selector,
PKIX_PL_Cert *cert,
void *plContext);
/*
* FUNCTION: PKIX_CertSelector_Create
* DESCRIPTION:
*
* Creates a new CertSelector using the Object pointed to by
* "certSelectorContext" (if any) and stores it at "pSelector". As noted
* above, by default, the MatchCallback is set to point to the default
* implementation provided by libpkix, which understands how to process
* ComCertSelParams objects. This is overridden if the MatchCallback pointed
* to by "callback" is not NULL, in which case the parameters are specified
* using the certSelectorContext.
*
* PARAMETERS:
* "callback"
* The MatchCallback function to be used.
* "certSelectorContext"
* Address of Object representing the CertSelector's context (if any).
* "pSelector"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Thread Safe (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_CertSelector_Create(
PKIX_CertSelector_MatchCallback callback,
PKIX_PL_Object *certSelectorContext,
PKIX_CertSelector **pSelector,
void *plContext);
/*
* FUNCTION: PKIX_CertSelector_GetMatchCallback
* DESCRIPTION:
*
* Retrieves a pointer to "selector's" Match callback function and puts it in
* "pCallback".
*
* PARAMETERS:
* "selector"
* The CertSelector whose Match callback is desired. Must be non-NULL.
* "pCallback"
* Address where Match callback function pointer will be stored.
* Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Thread Safe (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_CertSelector_GetMatchCallback(
PKIX_CertSelector *selector,
PKIX_CertSelector_MatchCallback *pCallback,
void *plContext);
/*
* FUNCTION: PKIX_CertSelector_GetCertSelectorContext
* DESCRIPTION:
*
* Retrieves a pointer to a PKIX_PL_Object representing the context (if any)
* of the CertSelector pointed to by "selector" and stores it at
* "pCertSelectorContext".
*
* PARAMETERS:
* "selector"
* Address of CertSelector whose context is to be stored.
* Must be non-NULL.
* "pCertSelectorContext"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Thread Safe (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_CertSelector_GetCertSelectorContext(
PKIX_CertSelector *selector,
PKIX_PL_Object **pCertSelectorContext,
void *plContext);
/*
* FUNCTION: PKIX_CertSelector_GetCommonCertSelectorParams
* DESCRIPTION:
*
* Retrieves a pointer to the ComCertSelParams object that represent the
* common parameters of the CertSelector pointed to by "selector" and stores
* it at "pCommonCertSelectorParams". If there are no common parameters
* stored with the CertSelector, this function stores NULL at
* "pCommonCertSelectorParams".
*
* PARAMETERS:
* "selector"
* Address of CertSelector whose ComCertSelParams object is to be stored.
* Must be non-NULL.
* "pCommonCertSelectorParams"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_CertSelector_GetCommonCertSelectorParams(
PKIX_CertSelector *selector,
PKIX_ComCertSelParams **pCommonCertSelectorParams,
void *plContext);
/*
* FUNCTION: PKIX_CertSelector_SetCommonCertSelectorParams
* DESCRIPTION:
*
* Sets the common parameters for the CertSelector pointed to by "selector"
* using the ComCertSelParams object pointed to by "commonCertSelectorParams".
*
* PARAMETERS:
* "selector"
* Address of CertSelector whose common parameters are to be set.
* Must be non-NULL.
* "commonCertSelectorParams"
* Address of ComCertSelParams object representing the common parameters.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "selector"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_CertSelector_SetCommonCertSelectorParams(
PKIX_CertSelector *selector,
PKIX_ComCertSelParams *commonCertSelectorParams,
void *plContext);
/* PKIX_ComCertSelParams
*
* PKIX_ComCertSelParams objects are X.509 parameters commonly used with
* CertSelectors, especially when enforcing constraints on a target
* certificate or determining which certificates to retrieve from a CertStore.
* ComCertSelParams objects are typically used with those CertSelectors that
* use the default implementation of MatchCallback, which understands how to
* process ComCertSelParams objects.
*/
/*
* FUNCTION: PKIX_ComCertSelParams_Create
* DESCRIPTION:
*
* Creates a new ComCertSelParams object and stores it at "pParams".
*
* PARAMETERS:
* "pParams"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Thread Safe (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_Create(
PKIX_ComCertSelParams **pParams,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetSubjAltNames
* DESCRIPTION:
*
* Retrieves a pointer to the List of GeneralNames (if any) representing the
* subject alternative names criterion that is set in the ComCertSelParams
* object pointed to by "params" and stores it at "pNames". In order to match
* against this criterion, a certificate must contain all or at least one of
* the criterion's subject alternative names (depending on the result of
* PKIX_ComCertSelParams_GetMatchAllSubjAltNames). The default behavior
* requires a certificate to contain all of the criterion's subject
* alternative names in order to match.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pNames", in which case all certificates are considered to match this
* criterion.
*
* Note that the List returned by this function is immutable.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject alternative names
* criterion (if any) is to be stored. Must be non-NULL.
* "pNames"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetSubjAltNames(
PKIX_ComCertSelParams *params,
PKIX_List **pNames, /* list of PKIX_PL_GeneralName */
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetSubjAltNames
* DESCRIPTION:
*
* Sets the subject alternative names criterion of the ComCertSelParams object
* pointed to by "params" using a List of GeneralNames pointed to by "names".
* In order to match against this criterion, a certificate must contain all or
* at least one of the criterion's subject alternative names (depending on the
* result of PKIX_ComCertSelParams_GetMatchAllSubjAltNames). The default
* behavior requires a certificate to contain all of the criterion's subject
* alternative names in order to match.
*
* If "names" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject alternative
* names criterion is to be set. Must be non-NULL.
* "names"
* Address of List of GeneralNames used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetSubjAltNames(
PKIX_ComCertSelParams *params,
PKIX_List *names, /* list of PKIX_PL_GeneralName */
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_AddSubjAltName
* DESCRIPTION:
*
* Adds to the subject alternative names criterion of the ComCertSelParams
* object pointed to by "params" using the GeneralName pointed to by "name".
* In order to match against this criterion, a certificate must contain all
* or at least one of the criterion's subject alternative names (depending on
* the result of PKIX_ComCertSelParams_GetMatchAllSubjAltNames). The default
* behavior requires a certificate to contain all of the criterion's subject
* alternative names in order to match.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject alternative names
* criterion is to be added to. Must be non-NULL.
* "name"
* Address of GeneralName to be added.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_AddSubjAltName(
PKIX_ComCertSelParams *params,
PKIX_PL_GeneralName *name,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetPathToNames
* DESCRIPTION:
*
* Retrieves a pointer to the List of GeneralNames (if any) representing the
* path to names criterion that is set in the ComCertSelParams object pointed
* to by "params" and stores it at "pNames". In order to match against this
* criterion, a certificate must not include name constraints that would
* prohibit building a path to the criterion's specified names.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pNames", in which case all certificates are considered to match this
* criterion.
*
* Note that the List returned by this function is immutable.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose path to names criterion
* (if any) is to be stored. Must be non-NULL.
* "pNames"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetPathToNames(
PKIX_ComCertSelParams *params,
PKIX_List **pNames, /* list of PKIX_PL_GeneralName */
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetPathToNames
* DESCRIPTION:
*
* Sets the path to names criterion of the ComCertSelParams object pointed to
* by "params" using a List of GeneralNames pointed to by "names". In order to
* match against this criterion, a certificate must not include name
* constraints that would prohibit building a path to the criterion's
* specified names.
*
* If "names" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose path to names criterion
* is to be set. Must be non-NULL.
* "names"
* Address of List of GeneralNames used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetPathToNames(
PKIX_ComCertSelParams *params,
PKIX_List *names, /* list of PKIX_PL_GeneralName */
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_AddPathToName
* DESCRIPTION:
*
* Adds to the path to names criterion of the ComCertSelParams object pointed
* to by "params" using the GeneralName pointed to by "pathToName". In order
* to match against this criterion, a certificate must not include name
* constraints that would prohibit building a path to the criterion's
* specified names.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose path to names criterion is to
* be added to. Must be non-NULL.
* "pathToName"
* Address of GeneralName to be added.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_AddPathToName(
PKIX_ComCertSelParams *params,
PKIX_PL_GeneralName *pathToName,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetAuthorityKeyIdentifier
* DESCRIPTION:
*
* Retrieves a pointer to the ByteArray (if any) representing the authority
* key identifier criterion that is set in the ComCertSelParams object
* pointed to by "params" and stores it at "pAuthKeyId". In order to match
* against this criterion, a certificate must contain an
* AuthorityKeyIdentifier extension whose value matches the criterion's
* authority key identifier value.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pAuthKeyId", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose authority key identifier
* criterion (if any) is to be stored. Must be non-NULL.
* "pAuthKeyId"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetAuthorityKeyIdentifier(
PKIX_ComCertSelParams *params,
PKIX_PL_ByteArray **pAuthKeyId,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetAuthorityKeyIdentifier
* DESCRIPTION:
*
* Sets the authority key identifier criterion of the ComCertSelParams object
* pointed to by "params" to the ByteArray pointed to by "authKeyId". In
* order to match against this criterion, a certificate must contain an
* AuthorityKeyIdentifier extension whose value matches the criterion's
* authority key identifier value.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose authority key identifier
* criterion is to be set. Must be non-NULL.
* "authKeyId"
* Address of ByteArray used to set the criterion
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetAuthorityKeyIdentifier(
PKIX_ComCertSelParams *params,
PKIX_PL_ByteArray *authKeyId,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetSubjKeyIdentifier
* DESCRIPTION:
*
* Retrieves a pointer to the ByteArray (if any) representing the subject key
* identifier criterion that is set in the ComCertSelParams object pointed to
* by "params" and stores it at "pSubjKeyId". In order to match against this
* criterion, a certificate must contain a SubjectKeyIdentifier extension
* whose value matches the criterion's subject key identifier value.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pSubjKeyId", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject key identifier
* criterion (if any) is to be stored. Must be non-NULL.
* "pSubjKeyId"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetSubjKeyIdentifier(
PKIX_ComCertSelParams *params,
PKIX_PL_ByteArray **pSubjKeyId,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetSubjKeyIdentifier
* DESCRIPTION:
*
* Sets the subject key identifier criterion of the ComCertSelParams object
* pointed to by "params" using a ByteArray pointed to by "subjKeyId". In
* order to match against this criterion, a certificate must contain an
* SubjectKeyIdentifier extension whose value matches the criterion's subject
* key identifier value.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject key identifier
* criterion is to be set. Must be non-NULL.
* "subjKeyId"
* Address of ByteArray used to set the criterion
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetSubjKeyIdentifier(
PKIX_ComCertSelParams *params,
PKIX_PL_ByteArray *subKeyId,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetSubjPubKey
* DESCRIPTION:
*
* Retrieves a pointer to the PublicKey (if any) representing the subject
* public key criterion that is set in the ComCertSelParams object pointed to
* by "params" and stores it at "pPubKey". In order to match against this
* criterion, a certificate must contain a SubjectPublicKey that matches the
* criterion's public key.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pPubKey", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject public key criterion
* (if any) is to be stored. Must be non-NULL.
* "pPubKey"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetSubjPubKey(
PKIX_ComCertSelParams *params,
PKIX_PL_PublicKey **pPubKey,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetSubjPubKey
* DESCRIPTION:
*
* Sets the subject public key criterion of the ComCertSelParams object
* pointed to by "params" using a PublicKey pointed to by "pubKey". In order
* to match against this criterion, a certificate must contain a
* SubjectPublicKey that matches the criterion's public key.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject public key
* criterion is to be set. Must be non-NULL.
* "pubKey"
* Address of PublicKey used to set the criterion
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetSubjPubKey(
PKIX_ComCertSelParams *params,
PKIX_PL_PublicKey *pubKey,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetSubjPKAlgId
* DESCRIPTION:
*
* Retrieves a pointer to the OID (if any) representing the subject public key
* algorithm identifier criterion that is set in the ComCertSelParams object
* pointed to by "params" and stores it at "pPubKey". In order to match
* against this criterion, a certificate must contain a SubjectPublicKey with
* an algorithm that matches the criterion's algorithm.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pAlgId", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject public key algorithm
* identifier (if any) is to be stored. Must be non-NULL.
* "pAlgId"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetSubjPKAlgId(
PKIX_ComCertSelParams *params,
PKIX_PL_OID **pAlgId,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetSubjPKAlgId
* DESCRIPTION:
*
* Sets the subject public key algorithm identifier criterion of the
* ComCertSelParams object pointed to by "params" using an OID pointed to by
* "algId". In order to match against this criterion, a certificate must
* contain a SubjectPublicKey with an algorithm that matches the criterion's
* algorithm.
*
* If "algId" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject public key
* algorithm identifier criterion is to be set. Must be non-NULL.
* "algId"
* Address of OID used to set criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetSubjPKAlgId(
PKIX_ComCertSelParams *params,
PKIX_PL_OID *algId,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetBasicConstraints
* DESCRIPTION:
*
* Retrieves a pointer to the minimum path length (if any) representing the
* basic constraints criterion that is set in the ComCertSelParams object
* pointed to by "params" and stores it at "pMinPathLength". In order to
* match against this criterion, there are several possibilities.
*
* 1) If the criterion's minimum path length is greater than or equal to zero,
* a certificate must include a BasicConstraints extension with a pathLen of
* at least this value.
*
* 2) If the criterion's minimum path length is -2, a certificate must be an
* end-entity certificate.
*
* 3) If the criterion's minimum path length is -1, no basic constraints check
* is done and all certificates are considered to match this criterion.
*
* The semantics of other values of the criterion's minimum path length are
* undefined but may be defined in future versions of the API.
*
* If "params" does not have this criterion set, this function stores -1 at
* "pMinPathLength", in which case all certificates are considered to match
* this criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose basic constraints criterion
* (if any) is to be stored. Must be non-NULL.
* "pMinPathLength"
* Address where PKIX_Int32 will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetBasicConstraints(
PKIX_ComCertSelParams *params,
PKIX_Int32 *pMinPathLength,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetBasicConstraints
* DESCRIPTION:
*
* Sets the basic constraints criterion of the ComCertSelParams object
* pointed to by "params" using the integer value of "minPathLength". In
* order to match against this criterion, there are several possibilities.
*
* 1) If the criterion's minimum path length is greater than or equal to zero,
* a certificate must include a BasicConstraints extension with a pathLen of
* at least this value.
*
* 2) If the criterion's minimum path length is -2, a certificate must be an
* end-entity certificate.
*
* 3) If the criterion's minimum path length is -1, no basic constraints check
* is done and all certificates are considered to match this criterion.
*
* The semantics of other values of the criterion's minimum path length are
* undefined but may be defined in future versions of the API.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose basic constraints
* criterion is to be set. Must be non-NULL.
* "minPathLength"
* Value of PKIX_Int32 used to set the criterion
* (or -1 to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetBasicConstraints(
PKIX_ComCertSelParams *params,
PKIX_Int32 minPathLength,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetCertificate
* DESCRIPTION:
*
* Retrieves a pointer to the Cert (if any) representing the certificate
* criterion that is set in the ComCertSelParams object pointed to by
* "params" and stores it at "pCert". In order to match against this
* criterion, a certificate must be equal to the criterion's certificate. If
* this criterion is specified, it is usually not necessary to specify any
* other criteria, since this criterion requires an exact certificate match.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pCert", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose certificate criterion
* (if any) is to be stored. Must be non-NULL.
* "pCert"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetCertificate(
PKIX_ComCertSelParams *params,
PKIX_PL_Cert **pCert,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetCertificate
* DESCRIPTION:
*
* Sets the certificate criterion of the ComCertSelParams object pointed to by
* "params" using a Cert pointed to by "cert". In order to match against this
* criterion, a certificate must be equal to the criterion's certificate.
* If this criterion is specified, it is usually not necessary to specify
* any other criteria, since this criterion requires an exact certificate
* match.
*
* If "cert" is NULL, all certificates are considered to match this criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose certificate criterion is to be
* set. Must be non-NULL.
* "cert"
* Address of Cert used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetCertificate(
PKIX_ComCertSelParams *params,
PKIX_PL_Cert *cert,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetCertificateValid
* DESCRIPTION:
*
* Retrieves a pointer to the Date (if any) representing the certificate
* validity criterion that is set in the ComCertSelParams object pointed to by
* "params" and stores it at "pDate". In order to match against this
* criterion, a certificate's validity period must include the criterion's
* Date.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pDate", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose certificate validity criterion
* (if any) is to be stored. Must be non-NULL.
* "pDate"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetCertificateValid(
PKIX_ComCertSelParams *params,
PKIX_PL_Date **pDate,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetCertificateValid
* DESCRIPTION:
*
* Sets the certificate validity criterion of the ComCertSelParams object
* pointed to by "params" using a Date pointed to by "date". In order to
* match against this criterion, a certificate's validity period must include
* the criterion's Date.
*
* If "date" is NULL, all certificates are considered to match this criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose certificate validity criterion
* is to be set. Must be non-NULL.
* "date"
* Address of Date used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetCertificateValid(
PKIX_ComCertSelParams *params,
PKIX_PL_Date *date,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetSerialNumber
* DESCRIPTION:
*
* Retrieves a pointer to the BigInt (if any) representing the serial number
* criterion that is set in the ComCertSelParams object pointed to by
* "params" and stores it at "pSerialNumber". In order to match against this
* criterion, a certificate must have a serial number equal to the
* criterion's serial number.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pSerialNumber", in which case all certificates are considered to match
* this criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose serial number criterion
* (if any) is to be stored. Must be non-NULL.
* "pSerialNumber"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetSerialNumber(
PKIX_ComCertSelParams *params,
PKIX_PL_BigInt **pSerialNumber,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetSerialNumber
* DESCRIPTION:
*
* Sets the serial number criterion of the ComCertSelParams object pointed to
* by "params" using a BigInt pointed to by "serialNumber". In order to match
* against this criterion, a certificate must have a serial number equal to
* the criterion's serial number.
*
* If "serialNumber" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose serial number criterion is to
* be set. Must be non-NULL.
* "serialNumber"
* Address of BigInt used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetSerialNumber(
PKIX_ComCertSelParams *params,
PKIX_PL_BigInt *serialNumber,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetVersion
* DESCRIPTION:
*
* Retrieves a PKIX_UInt32 (if any) representing the version criterion that is
* set in the ComCertSelParams object pointed to by "params" and stores it at
* "pVersion". In order to match against this criterion, a certificate's
* version must be equal to the criterion's version.
*
* The version number will either be 0, 1, or 2 (corresponding to
* v1, v2, or v3, respectively).
*
* If "params" does not have this criterion set, this function stores
* 0xFFFFFFFF at "pVersion", in which case all certificates are considered
* to match this criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose version criterion (if any) is
* to be stored. Must be non-NULL.
* "pVersion"
* Address where PKIX_Int32 will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetVersion(
PKIX_ComCertSelParams *params,
PKIX_UInt32 *pVersion,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetVersion
* DESCRIPTION:
*
* Sets the version criterion of the ComCertSelParams object pointed to by
* "params" using the integer value of "version". In order to match against
* this criterion, a certificate's version must be equal to the criterion's
* version. If the criterion's version is -1, no version check is done and
* all certificates are considered to match this criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose version criterion is to be
* set. Must be non-NULL.
* "version"
* Value of PKIX_Int32 used to set the criterion
* (or -1 to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetVersion(
PKIX_ComCertSelParams *params,
PKIX_Int32 version,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetKeyUsage
* DESCRIPTION:
*
* Retrieves a PKIX_UInt32 (if any) representing the key usage criterion that
* is set in the ComCertSelParams object pointed to by "params" and stores it
* at "pKeyUsage". In order to match against this criterion, a certificate
* must allow the criterion's key usage values. Note that a certificate that
* has no KeyUsage extension implicity allows all key usages. Note also that
* this functions supports a maximum of 32 key usage bits.
*
* If "params" does not have this criterion set, this function stores zero at
* "pKeyUsage", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose key usage criterion (if any)
* is to be stored. Must be non-NULL.
* "pKeyUsage"
* Address where PKIX_UInt32 will be stored. Must not be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetKeyUsage(
PKIX_ComCertSelParams *params,
PKIX_UInt32 *pKeyUsage,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetKeyUsage
* DESCRIPTION:
*
* Sets the key usage criterion of the ComCertSelParams object pointed to by
* "params" using the integer value of "keyUsage". In order to match against
* this criterion, a certificate must allow the criterion's key usage values.
* Note that a certificate that has no KeyUsage extension implicity allows
* all key usages. Note also that this functions supports a maximum of 32 key
* usage bits.
*
* If the criterion's key usage value is zero, no key usage check is done and
* all certificates are considered to match this criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose key usage criterion is to be
* set. Must be non-NULL.
* "keyUsage"
* Value of PKIX_Int32 used to set the criterion
* (or zero to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetKeyUsage(
PKIX_ComCertSelParams *params,
PKIX_UInt32 keyUsage,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetExtendedKeyUsage
* DESCRIPTION:
*
* Retrieves a pointer to the List of OIDs (if any) representing the extended
* key usage criterion that is set in the ComCertSelParams object pointed to
* by "params" and stores it at "pExtKeyUsage". In order to match against this
* criterion, a certificate's ExtendedKeyUsage extension must allow the
* criterion's extended key usages. Note that a certificate that has no
* ExtendedKeyUsage extension implicity allows all key purposes.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pExtKeyUsage", in which case all certificates are considered to match
* this criterion.
*
* Note that the List returned by this function is immutable.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose extended key usage criterion
* (if any) is to be stored. Must be non-NULL.
* "pExtKeyUsage"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetExtendedKeyUsage(
PKIX_ComCertSelParams *params,
PKIX_List **pExtKeyUsage, /* list of PKIX_PL_OID */
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetExtendedKeyUsage
* DESCRIPTION:
*
* Sets the extended key usage criterion of the ComCertSelParams object
* pointed to by "params" using a List of OIDs pointed to by "extKeyUsage".
* In order to match against this criterion, a certificate's ExtendedKeyUsage
* extension must allow the criterion's extended key usages. Note that a
* certificate that has no ExtendedKeyUsage extension implicitly allows all
* key purposes.
*
* If "extKeyUsage" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose extended key usage criterion
* is to be set. Must be non-NULL.
* "extKeyUsage"
* Address of List of OIDs used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetExtendedKeyUsage(
PKIX_ComCertSelParams *params,
PKIX_List *extKeyUsage, /* list of PKIX_PL_OID */
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetPolicy
* DESCRIPTION:
*
* Retrieves a pointer to the List of OIDs (if any) representing the policy
* criterion that is set in the ComCertSelParams object pointed to by
* "params" and stores it at "pPolicy". In order to match against this
* criterion, a certificate's CertificatePolicies extension must include at
* least one of the criterion's policies. If "params" has this criterion set,
* but the List of OIDs is empty, then a certificate's CertificatePolicies
* extension must include at least some policy.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pPolicy", in which case all certificates are considered to match this
* criterion.
*
* Note that the List returned by this function is immutable.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose policy criterion (if any) is
* to be stored. Must be non-NULL.
* "pPolicy"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetPolicy(
PKIX_ComCertSelParams *params,
PKIX_List **pPolicy, /* list of PKIX_PL_OID */
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetPolicy
* DESCRIPTION:
*
* Sets the policy criterion of the ComCertSelParams object pointed to by
* "params" using a List of OIDs pointed to by "policy". In order to match
* against this criterion, a certificate's CertificatePolicies extension must
* include at least one of the criterion's policies. If "params" has this
* criterion set, but the List of OIDs is empty, then a certificate's
* CertificatePolicies extension must include at least some policy.
*
* If "policy" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose policy criterion is to be set.
* Must be non-NULL.
* "policy"
* Address of List of OIDs used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetPolicy(
PKIX_ComCertSelParams *params,
PKIX_List *policy, /* list of PKIX_PL_OID */
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetIssuer
* DESCRIPTION:
*
* Retrieves a pointer to the X500Name (if any) representing the issuer
* criterion that is set in the ComCertSelParams object pointed to by
* "params" and stores it at "pIssuer". In order to match against this
* criterion, a certificate's IssuerName must match the criterion's issuer
* name.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pIssuer", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose issuer criterion (if any) is
* to be stored. Must be non-NULL.
* "pIssuer"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetIssuer(
PKIX_ComCertSelParams *params,
PKIX_PL_X500Name **pIssuer,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetIssuer
* DESCRIPTION:
*
* Sets the issuer criterion of the ComCertSelParams object pointed to by
* "params" using an X500Name pointed to by "issuer". In order to match
* against this criterion, a certificate's IssuerName must match the
* criterion's issuer name.
*
* If "issuer" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose issuer criterion is to be set.
* Must be non-NULL.
* "issuer"
* Address of X500Name used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetIssuer(
PKIX_ComCertSelParams *params,
PKIX_PL_X500Name *issuer,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetSubject
* DESCRIPTION:
*
* Retrieves a pointer to the X500Name (if any) representing the subject
* criterion that is set in the ComCertSelParams object pointed to by
* "params" and stores it at "pSubject". In order to match against this
* criterion, a certificate's SubjectName must match the criterion's subject
* name.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pSubject", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject criterion (if any) is
* to be stored. Must be non-NULL.
* "pSubject"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetSubject(
PKIX_ComCertSelParams *params,
PKIX_PL_X500Name **pSubject,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetSubject
* DESCRIPTION:
*
* Sets the subject criterion of the ComCertSelParams object pointed to by
* "params" using an X500Name pointed to by "subject". In order to match
* against this criterion, a certificate's SubjectName must match the
* criterion's subject name.
*
* If "subject" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject criterion is to be
* set. Must be non-NULL.
* "subject"
* Address of X500Name used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetSubject(
PKIX_ComCertSelParams *params,
PKIX_PL_X500Name *subject,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetSubjectAsByteArray
* DESCRIPTION:
*
* Retrieves a pointer to the ByteArray (if any) representing the subject
* criterion that is set in the ComCertSelParams object pointed to by
* "params" and stores it at "pSubject". In order to match against this
* criterion, a certificate's SubjectName must match the criterion's subject
* name.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pSubject", in which case all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject criterion (if any) is
* to be stored. Must be non-NULL.
* "pSubject"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetSubjectAsByteArray(
PKIX_ComCertSelParams *params,
PKIX_PL_ByteArray **pSubject,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetSubjectAsByteArray
* DESCRIPTION:
*
* Sets the subject criterion of the ComCertSelParams object pointed to by
* "params" using a ByteArray pointed to by "subject". In order to match
* against this criterion, a certificate's SubjectName must match the
* criterion's subject name.
*
* If "subject" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose subject criterion is to be
* set. Must be non-NULL.
* "subject"
* Address of ByteArray used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetSubjectAsByteArray(
PKIX_ComCertSelParams *params,
PKIX_PL_ByteArray *subject,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetNameConstraints
* DESCRIPTION:
*
* Retrieves a pointer to the X500Name (if any) representing the name
* constraints criterion that is set in the ComCertSelParams object pointed
* to by "params" and stores it at "pConstraints". In order to match against
* this criterion, a certificate's subject and subject alternative names must
* be allowed by the criterion's name constraints.
*
* If "params" does not have this criterion set, this function stores NULL at
* "pConstraints", in which case all certificates are considered to match
* this criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose name constraints criterion
* (if any) is to be stored. Must be non-NULL.
* "pConstraints"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetNameConstraints(
PKIX_ComCertSelParams *params,
PKIX_PL_CertNameConstraints **pConstraints,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetNameConstraints
* DESCRIPTION:
*
* Sets the name constraints criterion of the ComCertSelParams object pointed
* to by "params" using the CertNameConstraints pointed to by "constraints".
* In order to match against this criterion, a certificate's subject and
* subject alternative names must be allowed by the criterion's name
* constraints.
*
* If "constraints" is NULL, all certificates are considered to match this
* criterion.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose name constraints criterion is
* to be set. Must be non-NULL.
* "constraints"
* Address of CertNameConstraints used to set the criterion
* (or NULL to disable the criterion).
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetNameConstraints(
PKIX_ComCertSelParams *params,
PKIX_PL_CertNameConstraints *constraints,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetMatchAllSubjAltNames
* DESCRIPTION:
*
* Checks whether the ComCertSelParams object pointed to by "params" indicate
* that all subject alternative names are to be matched and stores the Boolean
* result at "pMatch". This Boolean value determines the behavior of the
* subject alternative names criterion.
*
* In order to match against the subject alternative names criterion, if the
* Boolean value at "pMatch" is PKIX_TRUE, a certificate must contain all of
* the criterion's subject alternative names. If the Boolean value at
* "pMatch" is PKIX_FALSE, a certificate must contain at least one of the
* criterion's subject alternative names. The default behavior is as if the
* Boolean value at "pMatch" is PKIX_TRUE.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object used to determine whether all
* subject alternative names must be matched. Must be non-NULL.
* "pMatch"
* Address where object pointer will be stored. Must be non-NULL.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_GetMatchAllSubjAltNames(
PKIX_ComCertSelParams *params,
PKIX_Boolean *pMatch,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetMatchAllSubjAltNames
* DESCRIPTION:
*
* Sets the match flag of the ComCertSelParams object pointed to by "params"
* using the Boolean value of "match". This Boolean value determines the
* behavior of the subject alternative names criterion.
*
* In order to match against the subject alternative names criterion, if the
* "match" is PKIX_TRUE, a certificate must contain all of the criterion's
* subject alternative names. If the "match" is PKIX_FALSE, a certificate
* must contain at least one of the criterion's subject alternative names.
* The default behavior is as if "match" is PKIX_TRUE.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose match flag is to be set.
* Must be non-NULL.
* "match"
* Boolean value used to set the match flag.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetMatchAllSubjAltNames(
PKIX_ComCertSelParams *params,
PKIX_Boolean match,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_GetLeafCertFlag
* DESCRIPTION:
*
* Return "leafCert" flag of the ComCertSelParams structure. If set to true,
* the flag indicates that a selector should filter out all cert that are not
* qualified to be a leaf cert according to the specified key/ekey usages.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object used to determine whether all
* subject alternative names must be matched. Must be non-NULL.
* "pLeafFlag"
* Address of returned value.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Conditionally Thread Safe
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error*
PKIX_ComCertSelParams_GetLeafCertFlag(
PKIX_ComCertSelParams *params,
PKIX_Boolean *pLeafFlag,
void *plContext);
/*
* FUNCTION: PKIX_ComCertSelParams_SetLeafCertFlag
* DESCRIPTION:
*
* Sets a flag that if its value is true, indicates that the selector
* should only pick certs that qualifies to be leaf for this cert path
* validation.
*
* PARAMETERS:
* "params"
* Address of ComCertSelParams object whose match flag is to be set.
* Must be non-NULL.
* "leafFlag"
* Boolean value used to set the leaf flag.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a CertSelector Error if the function fails in a non-fatal way.
* Returns a Fatal Error if the function fails in an unrecoverable way.
*/
PKIX_Error *
PKIX_ComCertSelParams_SetLeafCertFlag(
PKIX_ComCertSelParams *params,
PKIX_Boolean leafFlag,
void *plContext);
#ifdef __cplusplus
}
#endif
#endif /* _PKIX_CERTSEL_H */
|