/security/nss/lib/libpkix/pkix_pl_nss/module/pkix_pl_ldapcertstore.h

http://github.com/zpao/v8monkey · C Header · 108 lines · 36 code · 12 blank · 60 comment · 0 complexity · 0f7f4c89a44af3b66bd20082ea7e293e MD5 · raw file

  1. /* ***** BEGIN LICENSE BLOCK *****
  2. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. *
  4. * The contents of this file are subject to the Mozilla Public License Version
  5. * 1.1 (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. * http://www.mozilla.org/MPL/
  8. *
  9. * Software distributed under the License is distributed on an "AS IS" basis,
  10. * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. * for the specific language governing rights and limitations under the
  12. * License.
  13. *
  14. * The Original Code is the PKIX-C library.
  15. *
  16. * The Initial Developer of the Original Code is
  17. * Sun Microsystems, Inc.
  18. * Portions created by the Initial Developer are
  19. * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
  20. *
  21. * Contributor(s):
  22. * Sun Microsystems, Inc.
  23. *
  24. * Alternatively, the contents of this file may be used under the terms of
  25. * either the GNU General Public License Version 2 or later (the "GPL"), or
  26. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27. * in which case the provisions of the GPL or the LGPL are applicable instead
  28. * of those above. If you wish to allow use of your version of this file only
  29. * under the terms of either the GPL or the LGPL, and not to allow others to
  30. * use your version of this file under the terms of the MPL, indicate your
  31. * decision by deleting the provisions above and replace them with the notice
  32. * and other provisions required by the GPL or the LGPL. If you do not delete
  33. * the provisions above, a recipient may use your version of this file under
  34. * the terms of any one of the MPL, the GPL or the LGPL.
  35. *
  36. * ***** END LICENSE BLOCK ***** */
  37. /*
  38. * pkix_pl_ldapcertstore.h
  39. *
  40. * LDAPCertstore Object Type Definition
  41. *
  42. */
  43. #ifndef _PKIX_PL_LDAPCERTSTORE_H
  44. #define _PKIX_PL_LDAPCERTSTORE_H
  45. #include "pkix_pl_ldapt.h"
  46. #include "pkix_pl_common.h"
  47. #ifdef __cplusplus
  48. extern "C" {
  49. #endif
  50. /*
  51. * At the time of this version, there are unresolved questions about the LDAP
  52. * protocol. Although RFC1777 describes a BIND and UNBIND message, it is not
  53. * clear whether they are appropriate to this application. We have tested only
  54. * using servers that do not expect authentication, and that reject BIND
  55. * messages. It is not clear what values might be appropriate for the bindname
  56. * and authentication fields, which are currently implemented as char strings
  57. * supplied by the caller. (If this changes, the API and possibly the templates
  58. * will have to change.) Therefore the CertStore_Create API contains a BindAPI
  59. * structure, a union, which will have to be revised and extended when this
  60. * area of the protocol is better understood.
  61. *
  62. * It is further assumed that a given LdapCertStore will connect only to a
  63. * single server, and that the creation of the socket will initiate the
  64. * CONNECT. Therefore the LdapCertStore handles only the case of continuing
  65. * the connection, if nonblocking I/O is being used.
  66. */
  67. typedef enum {
  68. LDAP_CONNECT_PENDING,
  69. LDAP_CONNECTED,
  70. LDAP_BIND_PENDING,
  71. LDAP_BIND_RESPONSE,
  72. LDAP_BIND_RESPONSE_PENDING,
  73. LDAP_BOUND,
  74. LDAP_SEND_PENDING,
  75. LDAP_RECV,
  76. LDAP_RECV_PENDING,
  77. LDAP_RECV_INITIAL,
  78. LDAP_RECV_NONINITIAL,
  79. LDAP_ABANDON_PENDING
  80. } LDAPConnectStatus;
  81. #define LDAP_CACHEBUCKETS 128
  82. #define RCVBUFSIZE 512
  83. struct PKIX_PL_LdapCertStoreContext {
  84. PKIX_PL_LdapClient *client;
  85. };
  86. /* see source file for function documentation */
  87. PKIX_Error *pkix_pl_LdapCertStoreContext_RegisterSelf(void *plContext);
  88. PKIX_Error *
  89. pkix_pl_LdapCertStore_BuildCertList(
  90. PKIX_List *responseList,
  91. PKIX_List **pCerts,
  92. void *plContext);
  93. #ifdef __cplusplus
  94. }
  95. #endif
  96. #endif /* _PKIX_PL_LDAPCERTSTORE_H */