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
|
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the PKIX-C library.
*
* The Initial Developer of the Original Code is
* Sun Microsystems, Inc.
* Portions created by the Initial Developer are
* Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
*
* Contributor(s):
* Sun Microsystems, Inc.
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
/*
* This file defines functions associated with the various parameters used
* by the top-level functions.
*
*/
#ifndef _PKIX_PARAMS_H
#define _PKIX_PARAMS_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_ProcessingParams
*
* PKIX_ProcessingParams are parameters used when validating or building a
* chain of certificates. Using the parameters, the caller can specify several
* things, including the various inputs to the PKIX chain validation
* algorithm (such as trust anchors, initial policies, etc), any customized
* functionality (such as CertChainCheckers, RevocationCheckers, CertStores),
* and whether revocation checking should be disabled.
*
* Once the caller has created the ProcessingParams object, the caller then
* passes it to PKIX_ValidateChain or PKIX_BuildChain, which uses it to call
* the user's callback functions as needed during the validation or building
* process.
*
* If a parameter is not set (or is set to NULL), it will be set to the
* default value for that parameter. The default value for the Date parameter
* is NULL, which indicates the current time when the path is validated. The
* default for the remaining parameters is the least constrained.
*/
/*
* FUNCTION: PKIX_ProcessingParams_Create
* DESCRIPTION:
*
* Creates a new ProcessingParams object. Trust anchor list is set to
* newly created empty list of trust. In this case trust anchors will
* be taken from provided cert store. Pointed to the created
* ProcessingParams object is stored in "pParams".
*
* PARAMETERS:
* "anchors"
* Address of List of (non-empty) TrustAnchors to be used.
* Must be non-NULL.
* "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 Params 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_ProcessingParams_Create(
PKIX_ProcessingParams **pParams,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetCertChainCheckers
* DESCRIPTION:
*
* Retrieves a pointer to the List of CertChainCheckers (if any) that are set
* in the ProcessingParams pointed to by "params" and stores it at
* "pCheckers". Each CertChainChecker represents a custom certificate
* validation check used by PKIX_ValidateChain or PKIX_BuildChain as needed
* during the validation or building process. If "params" does not have any
* CertChainCheckers, this function stores an empty List at "pCheckers".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of CertChainCheckers (if any)
* are to be stored. Must be non-NULL.
* "pCheckers"
* 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 Params 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_ProcessingParams_GetCertChainCheckers(
PKIX_ProcessingParams *params,
PKIX_List **pCheckers, /* list of PKIX_CertChainChecker */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetCertChainCheckers
* DESCRIPTION:
*
* Sets the ProcessingParams pointed to by "params" with a List of
* CertChainCheckers pointed to by "checkers". Each CertChainChecker
* represents a custom certificate validation check used by
* PKIX_ValidateChain or PKIX_BuildChain as needed during the validation or
* building process. If "checkers" is NULL, no CertChainCheckers will be used.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of CertChainCheckers is to be
* set. Must be non-NULL.
* "checkers"
* Address of List of CertChainCheckers to be set. If NULL, no
* CertChainCheckers will be used.
* "plContext"
* Platform-specific context pointer.
* THREAD SAFETY:
* Not Thread Safe - assumes exclusive access to "params" and "checkers"
* (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a Params 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_ProcessingParams_SetCertChainCheckers(
PKIX_ProcessingParams *params,
PKIX_List *checkers, /* list of PKIX_CertChainChecker */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_AddCertChainChecker
* DESCRIPTION:
*
* Adds the CertChainChecker pointed to by "checker" to the ProcessingParams
* pointed to by "params". The CertChainChecker represents a custom
* certificate validation check used by PKIX_ValidateChain or PKIX_BuildChain
* as needed during the validation or building process.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams to be added to. Must be non-NULL.
* "checker"
* Address of CertChainChecker to be added. Must be non-NULL.
* "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 Params 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_ProcessingParams_AddCertChainChecker(
PKIX_ProcessingParams *params,
PKIX_CertChainChecker *checker,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetRevocationChecker
* DESCRIPTION:
*
* Retrieves a pointer to the RevocationChecker that are set
* in the ProcessingParams pointed to by "params" and stores it at
* "pRevChecker". Each RevocationChecker represents a revocation
* check used by PKIX_ValidateChain or PKIX_BuildChain as needed during the
* validation or building process. If "params" does not have any
* RevocationCheckers, this function stores an empty List at "pRevChecker".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of RevocationCheckers
* is to be stored. Must be non-NULL.
* "pRevChecker"
* 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 Params 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_ProcessingParams_GetRevocationChecker(
PKIX_ProcessingParams *params,
PKIX_RevocationChecker **pChecker,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetRevocationChecker
* DESCRIPTION:
*
* Sets the ProcessingParams pointed to by "params" with a
* RevocationChecker pointed to by "revChecker". Revocation
* checker object should be created and assigned to processing
* parameters before chain build or validation can begin.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of RevocationCheckers is to be
* set. Must be non-NULL.
* "revChecker"
* Address of RevocationChecker to be set. Must be set before chain
* building or validation.
* "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 Params 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_ProcessingParams_SetRevocationChecker(
PKIX_ProcessingParams *params,
PKIX_RevocationChecker *revChecker,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetCertStores
* DESCRIPTION:
*
* Retrieves a pointer to the List of CertStores (if any) that are set in the
* ProcessingParams pointed to by "params" and stores it at "pStores". Each
* CertStore represents a particular repository from which certificates and
* CRLs can be retrieved by PKIX_ValidateChain or PKIX_BuildChain as needed
* during the validation or building process. If "params" does not have any
* CertStores, this function stores an empty List at "pStores".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of CertStores (if any) are to
* be stored. Must be non-NULL.
* "pStores"
* 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 Params 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_ProcessingParams_GetCertStores(
PKIX_ProcessingParams *params,
PKIX_List **pStores, /* list of PKIX_CertStore */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetCertStores
* DESCRIPTION:
*
* Sets the ProcessingParams pointed to by "params" with a List of CertStores
* pointed to by "stores". Each CertStore represents a particular repository
* from which certificates and CRLs can be retrieved by PKIX_ValidateChain or
* PKIX_BuildChain as needed during the validation or building process. If
* "stores" is NULL, no CertStores will be used.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of CertStores is to be set.
* Must be non-NULL.
* "stores"
* Address of List of CertStores to be set. If NULL, no CertStores will
* be used.
* "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 Params 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_ProcessingParams_SetCertStores(
PKIX_ProcessingParams *params,
PKIX_List *stores, /* list of PKIX_CertStore */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_AddCertStore
* DESCRIPTION:
*
* Adds the CertStore pointed to by "store" to the ProcessingParams pointed
* to by "params". The CertStore represents a particular repository from
* which certificates and CRLs can be retrieved by PKIX_ValidateChain or
* PKIX_BuildChain as needed during the validation or building process.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams to be added to. Must be non-NULL.
* "store"
* Address of CertStore 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 Params 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_ProcessingParams_AddCertStore(
PKIX_ProcessingParams *params,
PKIX_CertStore *store,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetDate
* DESCRIPTION:
*
* Retrieves a pointer to the Date (if any) that is set in the
* ProcessingParams pointed to by "params" and stores it at "pDate". The
* Date represents the time for which the validation of the certificate chain
* should be determined. If "params" does not have any Date set, this function
* stores NULL at "pDate".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose Date (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 Params 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_ProcessingParams_GetDate(
PKIX_ProcessingParams *params,
PKIX_PL_Date **pDate,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetDate
* DESCRIPTION:
*
* Sets the ProcessingParams pointed to by "params" with a Date pointed to by
* "date". The Date represents the time for which the validation of the
* certificate chain should be determined. If "date" is NULL, the current
* time is used during validation.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose Date is to be set. Must be non-NULL.
* "date"
* Address of Date to be set. If NULL, current time is used.
* "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 Params 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_ProcessingParams_SetDate(
PKIX_ProcessingParams *params,
PKIX_PL_Date *date,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetInitialPolicies
* DESCRIPTION:
*
* Retrieves a pointer to the List of OIDs (if any) that are set in the
* ProcessingParams pointed to by "params" and stores it at "pInitPolicies".
* Each OID represents an initial policy identifier, indicating that any
* one of these policies would be acceptable to the certificate user for
* the purposes of certification path processing. If "params" does not have
* any initial policies, this function stores an empty List at
* "pInitPolicies".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of OIDs (if any) are to be
* stored. Must be non-NULL.
* "pInitPolicies"
* 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 Params 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_ProcessingParams_GetInitialPolicies(
PKIX_ProcessingParams *params,
PKIX_List **pInitPolicies, /* list of PKIX_PL_OID */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetInitialPolicies
* DESCRIPTION:
*
* Sets the ProcessingParams pointed to by "params" with a List of OIDs
* pointed to by "initPolicies".
*
* Each OID represents an initial policy identifier, indicating that any
* one of these policies would be acceptable to the certificate user for
* the purposes of certification path processing. By default, any policy
* is acceptable (i.e. all policies), so a user that wants to allow any
* policy as acceptable does not need to call this method. Similarly, if
* initPolicies is NULL or points to an empty List, all policies are
* acceptable.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of OIDs is to be set.
* Must be non-NULL.
* "initPolicies"
* Address of List of OIDs to be set. If NULL or if pointing to an empty
* List, all policies are acceptable.
* "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 Params 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_ProcessingParams_SetInitialPolicies(
PKIX_ProcessingParams *params,
PKIX_List *initPolicies, /* list of PKIX_PL_OID */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetPolicyQualifiersRejected
* DESCRIPTION:
*
* Checks whether the ProcessingParams pointed to by "params" indicate that
* policy qualifiers should be rejected and stores the Boolean result at
* "pRejected".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams used to determine whether or not policy
* qualifiers should be rejected. Must be non-NULL.
* "pRejected"
* Address where Boolean 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 Params 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_ProcessingParams_GetPolicyQualifiersRejected(
PKIX_ProcessingParams *params,
PKIX_Boolean *pRejected,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetPolicyQualifiersRejected
* DESCRIPTION:
*
* Specifies in the ProcessingParams pointed to by "params" whether policy
* qualifiers are rejected using the Boolean value of "rejected".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams to be set. Must be non-NULL.
* "rejected"
* Boolean value indicating whether policy qualifiers are to be rejected.
* "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 Params 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_ProcessingParams_SetPolicyQualifiersRejected(
PKIX_ProcessingParams *params,
PKIX_Boolean rejected,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetTargetCertConstraints
* DESCRIPTION:
*
* Retrieves a pointer to the CertSelector (if any) that is set in the
* ProcessingParams pointed to by "params" and stores it at "pConstraints".
* The CertSelector represents the constraints to be placed on the target
* certificate. If "params" does not have any CertSelector set, this function
* stores NULL at "pConstraints".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose CertSelector (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 Params 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_ProcessingParams_GetTargetCertConstraints(
PKIX_ProcessingParams *params,
PKIX_CertSelector **pConstraints,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetTargetCertConstraints
* DESCRIPTION:
*
* Sets the ProcessingParams pointed to by "params" with a CertSelector
* pointed to by "constraints". The CertSelector represents the constraints
* to be placed on the target certificate. If "constraints" is NULL, no
* constraints are defined.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose CertSelector is to be set.
* Must be non-NULL.
* "constraints"
* Address of CertSelector to be set. If NULL, no constraints are defined.
* "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 Params 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_ProcessingParams_SetTargetCertConstraints(
PKIX_ProcessingParams *params,
PKIX_CertSelector *constraints,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetTrustAnchors
* DESCRIPTION:
*
* Retrieves a pointer to the List of TrustAnchors that are set in
* the ProcessingParams pointed to by "params" and stores it at "pAnchors".
* If the function succeeds, the pointer to the List is guaranteed to be
* non-NULL and the List is guaranteed to be non-empty.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of TrustAnchors are to
* be stored. Must be non-NULL.
* "pAnchors"
* 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 Params 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_ProcessingParams_GetTrustAnchors(
PKIX_ProcessingParams *params,
PKIX_List **pAnchors, /* list of TrustAnchor */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetTrustAnchors
* DESCRIPTION:
*
* Sets user defined set of trust anchors. A certificate will be considered
* invalid if it does not chain to a trusted anchor from this list.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of TrustAnchors are to
* be stored. Must be non-NULL.
* "anchors"
* Address of the trust anchors list object. 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 Params 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_ProcessingParams_SetTrustAnchors(
PKIX_ProcessingParams *params,
PKIX_List *pAnchors, /* list of TrustAnchor */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetUseAIAForCertFetching
* DESCRIPTION:
*
* Retrieves a pointer to the Boolean. The boolean value represents
* the switch value that is used to identify if url in cert AIA extension
* may be used for cert fetching.
* If the function succeeds, the pointer to the Boolean is guaranteed to be
* non-NULL.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams. Must be non-NULL.
* "pUseAIA"
* 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 Params 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_ProcessingParams_GetUseAIAForCertFetching(
PKIX_ProcessingParams *params,
PKIX_Boolean *pUseAIA, /* list of TrustAnchor */
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetTrustAnchors
* DESCRIPTION:
*
* Sets switch value that defines if url in cert AIA extension
* may be used for cert fetching.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams.
* "useAIA"
* Address of the trust anchors list object. 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 Params 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_ProcessingParams_SetUseAIAForCertFetching(
PKIX_ProcessingParams *params,
PKIX_Boolean useAIA,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetQualifyTargetCert
* DESCRIPTION:
*
* Sets a boolean value that tells if libpkix needs to check that
* the target certificate satisfies the conditions set in processing
* parameters. Includes but not limited to date, ku and eku checks.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of TrustAnchors are to
* be stored. Must be non-NULL.
* "qualifyTargetCert"
* boolean value if set to true will trigger qualification of the
* target certificate.
* "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 Params 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_ProcessingParams_SetQualifyTargetCert(
PKIX_ProcessingParams *params,
PKIX_Boolean qualifyTargetCert,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetHintCerts
* DESCRIPTION:
*
* Retrieves a pointer to a List of Certs supplied by the user as a suggested
* partial CertChain (subject to verification), that are set in the
* ProcessingParams pointed to by "params", and stores it at "pHintCerts".
* The List returned may be empty or NULL.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of TrustAnchors are to
* be stored. Must be non-NULL.
* "pHintCerts"
* 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 Params 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_ProcessingParams_GetHintCerts(
PKIX_ProcessingParams *params,
PKIX_List **pHintCerts,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetHintCerts
* DESCRIPTION:
*
* Stores a pointer to a List of Certs supplied by the user as a suggested
* partial CertChain (subject to verification), as an element in the
* ProcessingParams pointed to by "params". The List may be empty or NULL.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose List of HintCerts is to be stored.
* Must be non-NULL.
* "hintCerts"
* 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 Params 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_ProcessingParams_SetHintCerts(
PKIX_ProcessingParams *params,
PKIX_List *hintCerts,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_GetResourceLimits
* DESCRIPTION:
*
* Retrieves a pointer to the ResourceLimits (if any) that is set in the
* ProcessingParams pointed to by "params" and stores it at "pResourceLimits".
* The ResourceLimits represent the maximum resource usage that the caller
* desires (such as MaxTime). The ValidateChain or BuildChain call will not
* exceed these maximum limits. If "params" does not have any ResourceLimits
* set, this function stores NULL at "pResourceLimits".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose ResourceLimits (if any) are to be
* stored. Must be non-NULL.
* "pResourceLimits"
* 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 Params 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_ProcessingParams_GetResourceLimits(
PKIX_ProcessingParams *params,
PKIX_ResourceLimits **pResourceLimits,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetResourceLimits
* DESCRIPTION:
*
* Sets the ProcessingParams pointed to by "params" with a ResourceLimits
* object pointed to by "resourceLimits". The ResourceLimits represent the
* maximum resource usage that the caller desires (such as MaxTime). The
* ValidateChain or BuildChain call will not exceed these maximum limits.
* If "resourceLimits" is NULL, no ResourceLimits are defined.
*
* PARAMETERS:
* "params"
* Address of ProcessingParams whose ResourceLimits are to be set.
* Must be non-NULL.
* "resourceLimits"
* Address of ResourceLimits to be set. If NULL, no limits are defined.
* "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 Params 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_ProcessingParams_SetResourceLimits(
PKIX_ProcessingParams *params,
PKIX_ResourceLimits *resourceLimits,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_IsAnyPolicyInhibited
* DESCRIPTION:
*
* Checks whether the ProcessingParams pointed to by "params" indicate that
* anyPolicy is inhibited and stores the Boolean result at "pInhibited".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams used to determine whether or not anyPolicy
* inhibited. Must be non-NULL.
* "pInhibited"
* Address where Boolean 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 Params 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_ProcessingParams_IsAnyPolicyInhibited(
PKIX_ProcessingParams *params,
PKIX_Boolean *pInhibited,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetAnyPolicyInhibited
* DESCRIPTION:
*
* Specifies in the ProcessingParams pointed to by "params" whether anyPolicy
* is inhibited using the Boolean value of "inhibited".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams to be set. Must be non-NULL.
* "inhibited"
* Boolean value indicating whether anyPolicy is to be inhibited.
* "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 Params 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_ProcessingParams_SetAnyPolicyInhibited(
PKIX_ProcessingParams *params,
PKIX_Boolean inhibited,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_IsExplicitPolicyRequired
* DESCRIPTION:
*
* Checks whether the ProcessingParams pointed to by "params" indicate that
* explicit policies are required and stores the Boolean result at
* "pRequired".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams used to determine whether or not explicit
* policies are required. Must be non-NULL.
* "pRequired"
* Address where Boolean 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 Params 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_ProcessingParams_IsExplicitPolicyRequired(
PKIX_ProcessingParams *params,
PKIX_Boolean *pRequired,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetExplicitPolicyRequired
* DESCRIPTION:
*
* Specifies in the ProcessingParams pointed to by "params" whether explicit
* policies are required using the Boolean value of "required".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams to be set. Must be non-NULL.
* "required"
* Boolean value indicating whether explicit policies are to be required.
* "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 Params 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_ProcessingParams_SetExplicitPolicyRequired(
PKIX_ProcessingParams *params,
PKIX_Boolean required,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_IsPolicyMappingInhibited
* DESCRIPTION:
*
* Checks whether the ProcessingParams pointed to by "params" indicate that
* policyMapping is inhibited and stores the Boolean result at "pInhibited".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams used to determine whether or not policy
* mappings are inhibited. Must be non-NULL.
* "pInhibited"
* Address where Boolean 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 Params 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_ProcessingParams_IsPolicyMappingInhibited(
PKIX_ProcessingParams *params,
PKIX_Boolean *pInhibited,
void *plContext);
/*
* FUNCTION: PKIX_ProcessingParams_SetPolicyMappingInhibited
* DESCRIPTION:
*
* Specifies in the ProcessingParams pointed to by "params" whether policy
* mapping is inhibited using the Boolean value of "inhibited".
*
* PARAMETERS:
* "params"
* Address of ProcessingParams to be set. Must be non-NULL.
* "inhibited"
* Boolean value indicating whether policy mapping is to be inhibited.
* "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 Params 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_ProcessingParams_SetPolicyMappingInhibited(
PKIX_ProcessingParams *params,
PKIX_Boolean inhibited,
void *plContext);
/* PKIX_ValidateParams
*
* PKIX_ValidateParams consists of a ProcessingParams object as well as the
* List of Certs (certChain) that the caller is trying to validate.
*/
/*
* FUNCTION: PKIX_ValidateParams_Create
* DESCRIPTION:
*
* Creates a new ValidateParams object and stores it at "pParams".
*
* PARAMETERS:
* "procParams"
* Address of ProcessingParams to be used. Must be non-NULL.
* "chain"
* Address of List of Certs (certChain) to be validated. Must be non-NULL.
* "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 Params 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_ValidateParams_Create(
PKIX_ProcessingParams *procParams,
PKIX_List *chain,
PKIX_ValidateParams **pParams,
void *plContext);
/*
* FUNCTION: PKIX_ValidateParams_GetProcessingParams
* DESCRIPTION:
*
* Retrieves a pointer to the ProcessingParams that represent the basic
* certificate processing parameters used during chain validation and chain
* building from the ValidateParams pointed to by "valParams" and stores it
* at "pProcParams". If the function succeeds, the pointer to the
* ProcessingParams is guaranteed to be non-NULL.
*
* PARAMETERS:
* "valParams"
* Address of ValidateParams whose ProcessingParams are to be stored.
* Must be non-NULL.
* "pProcParams"
* 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 Params 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_ValidateParams_GetProcessingParams(
PKIX_ValidateParams *valParams,
PKIX_ProcessingParams **pProcParams,
void *plContext);
/*
* FUNCTION: PKIX_ValidateParams_GetCertChain
* DESCRIPTION:
*
* Retrieves a pointer to the List of Certs (certChain) that is set in the
* ValidateParams pointed to by "valParams" and stores it at "pChain". If the
* function succeeds, the pointer to the CertChain is guaranteed to be
* non-NULL.
*
* PARAMETERS:
* "valParams"
* Address of ValidateParams whose CertChain is to be stored.
* Must be non-NULL.
* "pChain"
* 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 Params 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_ValidateParams_GetCertChain(
PKIX_ValidateParams *valParams,
PKIX_List **pChain,
void *plContext);
/* PKIX_TrustAnchor
*
* A PKIX_TrustAnchor represents a trusted entity and can be specified using a
* self-signed certificate or using the trusted CA's name and public key. In
* order to limit the trust in the trusted entity, name constraints can also
* be imposed on the trust anchor.
*/
/*
* FUNCTION: PKIX_TrustAnchor_CreateWithCert
* DESCRIPTION:
*
* Creates a new TrustAnchor object using the Cert pointed to by "cert" as
* the trusted certificate and stores it at "pAnchor". Once created, a
* TrustAnchor is immutable.
*
* PARAMETERS:
* "cert"
* Address of Cert to use as trusted certificate. Must be non-NULL.
* "pAnchor"
* 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 Params 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_TrustAnchor_CreateWithCert(
PKIX_PL_Cert *cert,
PKIX_TrustAnchor **pAnchor,
void *plContext);
/*
* FUNCTION: PKIX_TrustAnchor_CreateWithNameKeyPair
* DESCRIPTION:
*
* Creates a new TrustAnchor object using the X500Name pointed to by "name",
* and the PublicKey pointed to by "pubKey" and stores it at "pAnchor". The
* CertNameConstraints pointed to by "nameConstraints" (if any) are used to
* limit the trust placed in this trust anchor. To indicate that name
* constraints don't apply, set "nameConstraints" to NULL. Once created, a
* TrustAnchor is immutable.
*
* PARAMETERS:
* "name"
* Address of X500Name to use as name of trusted CA. Must be non-NULL.
* "pubKey"
* Address of PublicKey to use as trusted public key. Must be non-NULL.
* "nameConstraints"
* Address of CertNameConstraints to use as initial name constraints.
* If NULL, no name constraints are applied.
* "pAnchor"
* 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 Params 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_TrustAnchor_CreateWithNameKeyPair(
PKIX_PL_X500Name *name,
PKIX_PL_PublicKey *pubKey,
PKIX_PL_CertNameConstraints *nameConstraints,
PKIX_TrustAnchor **pAnchor,
void *plContext);
/*
* FUNCTION: PKIX_TrustAnchor_GetTrustedCert
* DESCRIPTION:
*
* Retrieves a pointer to the Cert that is set in the TrustAnchor pointed to
* by "anchor" and stores it at "pCert". If "anchor" does not have a Cert
* set, this function stores NULL at "pCert".
*
* PARAMETERS:
* "anchor"
* Address of TrustAnchor whose Cert is to be stored. Must be non-NULL.
* "pChain"
* 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 Params 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_TrustAnchor_GetTrustedCert(
PKIX_TrustAnchor *anchor,
PKIX_PL_Cert **pCert,
void *plContext);
/*
* FUNCTION: PKIX_TrustAnchor_GetCAName
* DESCRIPTION:
*
* Retrieves a pointer to the CA's X500Name (if any) that is set in the
* TrustAnchor pointed to by "anchor" and stores it at "pCAName". If "anchor"
* does not have an X500Name set, this function stores NULL at "pCAName".
*
* PARAMETERS:
* "anchor"
* Address of TrustAnchor whose CA Name is to be stored. Must be non-NULL.
* "pCAName"
* 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 Params 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_TrustAnchor_GetCAName(
PKIX_TrustAnchor *anchor,
PKIX_PL_X500Name **pCAName,
void *plContext);
/*
* FUNCTION: PKIX_TrustAnchor_GetCAPublicKey
* DESCRIPTION:
*
* Retrieves a pointer to the CA's PublicKey (if any) that is set in the
* TrustAnchor pointed to by "anchor" and stores it at "pPubKey". If "anchor"
* does not have a PublicKey set, this function stores NULL at "pPubKey".
*
* PARAMETERS:
* "anchor"
* Address of TrustAnchor whose CA PublicKey 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:
* Thread Safe (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a Params 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_TrustAnchor_GetCAPublicKey(
PKIX_TrustAnchor *anchor,
PKIX_PL_PublicKey **pPubKey,
void *plContext);
/*
* FUNCTION: PKIX_TrustAnchor_GetNameConstraints
* DESCRIPTION:
*
* Retrieves a pointer to the CertNameConstraints (if any) set in the
* TrustAnchor pointed to by "anchor" and stores it at "pConstraints". If
* "anchor" does not have any CertNameConstraints set, this function stores
* NULL at "pConstraints".
*
* PARAMETERS:
* "anchor"
* Address of TrustAnchor whose CertNameConstraints are 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:
* Thread Safe (see Thread Safety Definitions in Programmer's Guide)
* RETURNS:
* Returns NULL if the function succeeds.
* Returns a Params 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_TrustAnchor_GetNameConstraints(
PKIX_TrustAnchor *anchor,
PKIX_PL_CertNameConstraints **pNameConstraints,
void *plContext);
/* PKIX_ResourceLimits
*
* A PKIX_ResourceLimits object represents the maximum resource usage that
* the caller desires. The ValidateChain or BuildChain call
* will not exceed these maximum limits. For example, the caller may want
* a timeout value of 1 minute, meaning that if the ValidateChain or
* BuildChain function is unable to finish in 1 minute, it should abort
* with an Error.
*/
/*
* FUNCTION: PKIX_ResourceLimits_Create
* DESCRIPTION:
*
* Creates a new ResourceLimits object and stores it at "pResourceLimits".
*
* PARAMETERS:
* "pResourceLimits"
* 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 ResourceLimits 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_ResourceLimits_Create(
PKIX_ResourceLimits **pResourceLimits,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_GetMaxTime
* DESCRIPTION:
*
* Retrieves a PKIX_UInt32 (if any) representing the maximum time that is
* set in the ResourceLimits object pointed to by "resourceLimits" and stores
* it at "pMaxTime". This maximum time (in seconds) should not be exceeded
* by the function whose ProcessingParams contain this ResourceLimits object
* (typically ValidateChain or BuildChain). It essentially functions as a
* time-out value and is only appropriate if blocking I/O is being used.
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum time (in seconds) is
* to be stored. Must be non-NULL.
* "pMaxTime"
* Address where PKIX_UInt32 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 ResourceLimits 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_ResourceLimits_GetMaxTime(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 *pMaxTime,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_SetMaxTime
* DESCRIPTION:
*
* Sets the maximum time of the ResourceLimits object pointed to by
* "resourceLimits" using the PKIX_UInt32 value of "maxTime". This
* maximum time (in seconds) should not be exceeded by the function
* whose ProcessingParams contain this ResourceLimits object
* (typically ValidateChain or BuildChain). It essentially functions as a
* time-out value and is only appropriate if blocking I/O is being used.
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum time (in seconds) is
* to be set. Must be non-NULL.
* "maxTime"
* Value of PKIX_UInt32 representing the maximum time (in seconds)
* "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 ResourceLimits 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_ResourceLimits_SetMaxTime(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 maxTime,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_GetMaxFanout
* DESCRIPTION:
*
* Retrieves a PKIX_UInt32 (if any) representing the maximum fanout that is
* set in the ResourceLimits object pointed to by "resourceLimits" and stores
* it at "pMaxFanout". This maximum fanout (number of certs) should not be
* exceeded by the function whose ProcessingParams contain this ResourceLimits
* object (typically ValidateChain or BuildChain). If the builder encounters
* more than this maximum number of certificates when searching for the next
* candidate certificate, it should abort and return an error. This
* parameter is only relevant for ValidateChain if it needs to internally call
* BuildChain (e.g. in order to build the chain to a CRL's issuer).
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum fanout (number of certs)
* is to be stored. Must be non-NULL.
* "pMaxFanout"
* Address where PKIX_UInt32 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 ResourceLimits 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_ResourceLimits_GetMaxFanout(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 *pMaxFanout,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_SetMaxFanout
* DESCRIPTION:
*
* Sets the maximum fanout of the ResourceLimits object pointed to by
* "resourceLimits" using the PKIX_UInt32 value of "maxFanout". This maximum
* fanout (number of certs) should not be exceeded by the function whose
* ProcessingParams contain this ResourceLimits object (typically ValidateChain
* or BuildChain). If the builder encounters more than this maximum number of
* certificates when searching for the next candidate certificate, it should
* abort and return an Error. This parameter is only relevant for ValidateChain
* if it needs to internally call BuildChain (e.g. in order to build the
* chain to a CRL's issuer).
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum fanout (number of certs)
* is to be set. Must be non-NULL.
* "maxFanout"
* Value of PKIX_UInt32 representing the maximum fanout (number of certs)
* "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 ResourceLimits 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_ResourceLimits_SetMaxFanout(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 maxFanout,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_GetMaxDepth
* DESCRIPTION:
*
* Retrieves a PKIX_UInt32 (if any) representing the maximum depth that is
* set in the ResourceLimits object pointed to by "resourceLimits" and stores
* it at "pMaxDepth". This maximum depth (number of certs) should not be
* exceeded by the function whose ProcessingParams contain this ResourceLimits
* object (typically ValidateChain or BuildChain). If the builder encounters
* more than this maximum number of certificates when searching for the next
* candidate certificate, it should abort and return an error. This
* parameter is only relevant for ValidateChain if it needs to internally call
* BuildChain (e.g. in order to build the chain to a CRL's issuer).
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum depth (number of certs)
* is to be stored. Must be non-NULL.
* "pMaxDepth"
* Address where PKIX_UInt32 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 ResourceLimits 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_ResourceLimits_GetMaxDepth(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 *pMaxDepth,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_SetMaxDepth
* DESCRIPTION:
*
* Sets the maximum depth of the ResourceLimits object pointed to by
* "resourceLimits" using the PKIX_UInt32 value of "maxDepth". This maximum
* depth (number of certs) should not be exceeded by the function whose
* ProcessingParams contain this ResourceLimits object (typically ValidateChain
* or BuildChain). If the builder encounters more than this maximum number of
* certificates when searching for the next candidate certificate, it should
* abort and return an Error. This parameter is only relevant for ValidateChain
* if it needs to internally call BuildChain (e.g. in order to build the
* chain to a CRL's issuer).
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum depth (number of certs)
* is to be set. Must be non-NULL.
* "maxDepth"
* Value of PKIX_UInt32 representing the maximum depth (number of certs)
* "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 ResourceLimits 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_ResourceLimits_SetMaxDepth(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 maxDepth,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_GetMaxNumberOfCerts
* DESCRIPTION:
*
* Retrieves a PKIX_UInt32 (if any) representing the maximum number of traversed
* certs that is set in the ResourceLimits object pointed to by "resourceLimits"
* and stores it at "pMaxNumber". This maximum number of traversed certs should
* not be exceeded by the function whose ProcessingParams contain this ResourceLimits
* object (typically ValidateChain or BuildChain). If the builder traverses more
* than this number of certs during the build process, it should abort and
* return an Error. This parameter is only relevant for ValidateChain if it
* needs to internally call BuildChain (e.g. in order to build the chain to a
* CRL's issuer).
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum number of traversed certs
* is to be stored. Must be non-NULL.
* "pMaxNumber"
* Address where PKIX_UInt32 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 ResourceLimits 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_ResourceLimits_GetMaxNumberOfCerts(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 *pMaxNumber,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_SetMaxNumberOfCerts
* DESCRIPTION:
*
* Sets the maximum number of traversed certs of the ResourceLimits object
* pointed to by "resourceLimits" using the PKIX_UInt32 value of "maxNumber".
* This maximum number of traversed certs should not be exceeded by the function
* whose ProcessingParams contain this ResourceLimits object (typically ValidateChain
* or BuildChain). If the builder traverses more than this number of certs
* during the build process, it should abort and return an Error. This parameter
* is only relevant for ValidateChain if it needs to internally call BuildChain
* (e.g. in order to build the chain to a CRL's issuer).
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum number of traversed certs
* is to be set. Must be non-NULL.
* "maxNumber"
* Value of PKIX_UInt32 representing the maximum number of traversed certs
* "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 ResourceLimits 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_ResourceLimits_SetMaxNumberOfCerts(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 maxNumber,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_GetMaxNumberOfCRLs
* DESCRIPTION:
*
* Retrieves a PKIX_UInt32 (if any) representing the maximum number of traversed
* CRLs that is set in the ResourceLimits object pointed to by "resourceLimits"
* and stores it at "pMaxNumber". This maximum number of traversed CRLs should
* not be exceeded by the function whose ProcessingParams contain this ResourceLimits
* object (typically ValidateChain or BuildChain). If the builder traverses more
* than this number of CRLs during the build process, it should abort and
* return an Error. This parameter is only relevant for ValidateChain if it
* needs to internally call BuildChain (e.g. in order to build the chain to a
* CRL's issuer).
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum number of traversed CRLs
* is to be stored. Must be non-NULL.
* "pMaxNumber"
* Address where PKIX_UInt32 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 ResourceLimits 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_ResourceLimits_GetMaxNumberOfCRLs(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 *pMaxNumber,
void *plContext);
/*
* FUNCTION: PKIX_ResourceLimits_SetMaxNumberOfCRLs
* DESCRIPTION:
*
* Sets the maximum number of traversed CRLs of the ResourceLimits object
* pointed to by "resourceLimits" using the PKIX_UInt32 value of "maxNumber".
* This maximum number of traversed CRLs should not be exceeded by the function
* whose ProcessingParams contain this ResourceLimits object (typically ValidateChain
* or BuildChain). If the builder traverses more than this number of CRLs
* during the build process, it should abort and return an Error. This parameter
* is only relevant for ValidateChain if it needs to internally call BuildChain
* (e.g. in order to build the chain to a CRL's issuer).
*
* PARAMETERS:
* "resourceLimits"
* Address of ResourceLimits object whose maximum number of traversed CRLs
* is to be set. Must be non-NULL.
* "maxNumber"
* Value of PKIX_UInt32 representing the maximum number of traversed CRLs
* "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 ResourceLimits 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_ResourceLimits_SetMaxNumberOfCRLs(
PKIX_ResourceLimits *resourceLimits,
PKIX_UInt32 maxNumber,
void *plContext);
#ifdef __cplusplus
}
#endif
#endif /* _PKIX_PARAMS_H */
|