/security/nss/lib/pki/pkistore.h

http://github.com/zpao/v8monkey · C Header · 204 lines · 123 code · 27 blank · 54 comment · 0 complexity · bafc5647944501bc6fc6d1090aceed6d 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 Netscape security libraries.
  15. *
  16. * The Initial Developer of the Original Code is
  17. * Netscape Communications Corporation.
  18. * Portions created by the Initial Developer are Copyright (C) 1994-2000
  19. * the Initial Developer. All Rights Reserved.
  20. *
  21. * Contributor(s):
  22. *
  23. * Alternatively, the contents of this file may be used under the terms of
  24. * either the GNU General Public License Version 2 or later (the "GPL"), or
  25. * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26. * in which case the provisions of the GPL or the LGPL are applicable instead
  27. * of those above. If you wish to allow use of your version of this file only
  28. * under the terms of either the GPL or the LGPL, and not to allow others to
  29. * use your version of this file under the terms of the MPL, indicate your
  30. * decision by deleting the provisions above and replace them with the notice
  31. * and other provisions required by the GPL or the LGPL. If you do not delete
  32. * the provisions above, a recipient may use your version of this file under
  33. * the terms of any one of the MPL, the GPL or the LGPL.
  34. *
  35. * ***** END LICENSE BLOCK ***** */
  36. #ifndef PKISTORE_H
  37. #define PKISTORE_H
  38. #ifdef DEBUG
  39. static const char PKISTORE_CVS_ID[] = "@(#) $RCSfile: pkistore.h,v $ $Revision: 1.12 $ $Date: 2008/06/06 01:19:31 $";
  40. #endif /* DEBUG */
  41. #ifndef NSSPKIT_H
  42. #include "nsspkit.h"
  43. #endif /* NSSPKIT_H */
  44. #ifndef BASE_H
  45. #include "base.h"
  46. #endif /* BASE_H */
  47. PR_BEGIN_EXTERN_C
  48. /*
  49. * PKI Stores
  50. *
  51. * This is a set of routines for managing local stores of PKI objects.
  52. * Currently, the only application is in crypto contexts, where the
  53. * certificate store is used. In the future, methods should be added
  54. * here for storing local references to keys.
  55. */
  56. /*
  57. * nssCertificateStore
  58. *
  59. * Manages local store of certificate, trust, and S/MIME profile objects.
  60. * Within a crypto context, mappings of cert to trust and cert to S/MIME
  61. * profile are always 1-1. Therefore, it is reasonable to store all objects
  62. * in a single collection, indexed by the certificate.
  63. */
  64. NSS_EXTERN nssCertificateStore *
  65. nssCertificateStore_Create
  66. (
  67. NSSArena *arenaOpt
  68. );
  69. NSS_EXTERN PRStatus
  70. nssCertificateStore_Destroy
  71. (
  72. nssCertificateStore *store
  73. );
  74. /* Atomic Find cert in store, or add this cert to the store.
  75. ** Ref counts properly maintained.
  76. */
  77. NSS_EXTERN NSSCertificate *
  78. nssCertificateStore_FindOrAdd
  79. (
  80. nssCertificateStore *store,
  81. NSSCertificate *c
  82. );
  83. NSS_EXTERN void
  84. nssCertificateStore_RemoveCertLOCKED
  85. (
  86. nssCertificateStore *store,
  87. NSSCertificate *cert
  88. );
  89. struct nssCertificateStoreTraceStr {
  90. nssCertificateStore* store;
  91. PZLock* lock;
  92. PRBool locked;
  93. PRBool unlocked;
  94. };
  95. typedef struct nssCertificateStoreTraceStr nssCertificateStoreTrace;
  96. NSS_EXTERN void
  97. nssCertificateStore_Lock (
  98. nssCertificateStore *store, nssCertificateStoreTrace* out
  99. );
  100. NSS_EXTERN void
  101. nssCertificateStore_Unlock (
  102. nssCertificateStore *store, const nssCertificateStoreTrace* in,
  103. nssCertificateStoreTrace* out
  104. );
  105. NSS_EXTERN NSSCertificate **
  106. nssCertificateStore_FindCertificatesBySubject
  107. (
  108. nssCertificateStore *store,
  109. NSSDER *subject,
  110. NSSCertificate *rvOpt[],
  111. PRUint32 maximumOpt,
  112. NSSArena *arenaOpt
  113. );
  114. NSS_EXTERN NSSCertificate **
  115. nssCertificateStore_FindCertificatesByNickname
  116. (
  117. nssCertificateStore *store,
  118. const NSSUTF8 *nickname,
  119. NSSCertificate *rvOpt[],
  120. PRUint32 maximumOpt,
  121. NSSArena *arenaOpt
  122. );
  123. NSS_EXTERN NSSCertificate **
  124. nssCertificateStore_FindCertificatesByEmail
  125. (
  126. nssCertificateStore *store,
  127. NSSASCII7 *email,
  128. NSSCertificate *rvOpt[],
  129. PRUint32 maximumOpt,
  130. NSSArena *arenaOpt
  131. );
  132. NSS_EXTERN NSSCertificate *
  133. nssCertificateStore_FindCertificateByIssuerAndSerialNumber
  134. (
  135. nssCertificateStore *store,
  136. NSSDER *issuer,
  137. NSSDER *serial
  138. );
  139. NSS_EXTERN NSSCertificate *
  140. nssCertificateStore_FindCertificateByEncodedCertificate
  141. (
  142. nssCertificateStore *store,
  143. NSSDER *encoding
  144. );
  145. NSS_EXTERN PRStatus
  146. nssCertificateStore_AddTrust
  147. (
  148. nssCertificateStore *store,
  149. NSSTrust *trust
  150. );
  151. NSS_EXTERN NSSTrust *
  152. nssCertificateStore_FindTrustForCertificate
  153. (
  154. nssCertificateStore *store,
  155. NSSCertificate *cert
  156. );
  157. NSS_EXTERN PRStatus
  158. nssCertificateStore_AddSMIMEProfile
  159. (
  160. nssCertificateStore *store,
  161. nssSMIMEProfile *profile
  162. );
  163. NSS_EXTERN nssSMIMEProfile *
  164. nssCertificateStore_FindSMIMEProfileForCertificate
  165. (
  166. nssCertificateStore *store,
  167. NSSCertificate *cert
  168. );
  169. NSS_EXTERN void
  170. nssCertificateStore_DumpStoreInfo
  171. (
  172. nssCertificateStore *store,
  173. void (* cert_dump_iter)(const void *, void *, void *),
  174. void *arg
  175. );
  176. PR_END_EXTERN_C
  177. #endif /* PKISTORE_H */