PageRenderTime 35ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/gecko_api/include/certdb.h

http://firefox-mac-pdf.googlecode.com/
C Header | 171 lines | 81 code | 39 blank | 51 comment | 0 complexity | 77f94099439258b6e28de820771df83e 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 _CERTDB_H_
  37. #define _CERTDB_H_
  38. /* common flags for all types of certificates */
  39. #define CERTDB_VALID_PEER (1<<0)
  40. #define CERTDB_TRUSTED (1<<1)
  41. #define CERTDB_SEND_WARN (1<<2)
  42. #define CERTDB_VALID_CA (1<<3)
  43. #define CERTDB_TRUSTED_CA (1<<4) /* trusted for issuing server certs */
  44. #define CERTDB_NS_TRUSTED_CA (1<<5)
  45. #define CERTDB_USER (1<<6)
  46. #define CERTDB_TRUSTED_CLIENT_CA (1<<7) /* trusted for issuing client certs */
  47. #define CERTDB_INVISIBLE_CA (1<<8) /* don't show in UI */
  48. #define CERTDB_GOVT_APPROVED_CA (1<<9) /* can do strong crypto in export ver */
  49. SEC_BEGIN_PROTOS
  50. CERTSignedCrl *
  51. SEC_FindCrlByKey(CERTCertDBHandle *handle, SECItem *crlKey, int type);
  52. CERTSignedCrl *
  53. SEC_FindCrlByName(CERTCertDBHandle *handle, SECItem *crlKey, int type);
  54. CERTSignedCrl *
  55. SEC_FindCrlByDERCert(CERTCertDBHandle *handle, SECItem *derCrl, int type);
  56. PRBool
  57. SEC_CertNicknameConflict(char *nickname, SECItem *derSubject,
  58. CERTCertDBHandle *handle);
  59. CERTSignedCrl *
  60. SEC_NewCrl(CERTCertDBHandle *handle, char *url, SECItem *derCrl, int type);
  61. SECStatus
  62. SEC_DeletePermCRL(CERTSignedCrl *crl);
  63. SECStatus
  64. SEC_LookupCrls(CERTCertDBHandle *handle, CERTCrlHeadNode **nodes, int type);
  65. SECStatus
  66. SEC_DestroyCrl(CERTSignedCrl *crl);
  67. CERTSignedCrl* SEC_DupCrl(CERTSignedCrl* acrl);
  68. SECStatus
  69. CERT_AddTempCertToPerm(CERTCertificate *cert, char *nickname,
  70. CERTCertTrust *trust);
  71. SECStatus SEC_DeletePermCertificate(CERTCertificate *cert);
  72. PRBool
  73. SEC_CrlIsNewer(CERTCrl *inNew, CERTCrl *old);
  74. SECCertTimeValidity
  75. SEC_CheckCrlTimes(CERTCrl *crl, PRTime t);
  76. #ifdef notdef
  77. /*
  78. ** Add a DER encoded certificate to the permanent database.
  79. ** "derCert" is the DER encoded certificate.
  80. ** "nickname" is the nickname to use for the cert
  81. ** "trust" is the trust parameters for the cert
  82. */
  83. SECStatus SEC_AddPermCertificate(PCERTCertDBHandle *handle, SECItem *derCert,
  84. char *nickname, PCERTCertTrust *trust);
  85. certDBEntryCert *
  86. SEC_FindPermCertByKey(PCERTCertDBHandle *handle, SECItem *certKey);
  87. certDBEntryCert
  88. *SEC_FindPermCertByName(PCERTCertDBHandle *handle, SECItem *name);
  89. SECStatus SEC_OpenPermCertDB(PCERTCertDBHandle *handle,
  90. PRBool readOnly,
  91. PCERTDBNameFunc namecb,
  92. void *cbarg);
  93. typedef SECStatus (PR_CALLBACK * PermCertCallback)(PCERTCertificate *cert,
  94. SECItem *k, void *pdata);
  95. /*
  96. ** Traverse the entire permanent database, and pass the certs off to a
  97. ** user supplied function.
  98. ** "certfunc" is the user function to call for each certificate
  99. ** "udata" is the user's data, which is passed through to "certfunc"
  100. */
  101. SECStatus
  102. PCERT_TraversePermCerts(PCERTCertDBHandle *handle,
  103. PermCertCallback certfunc,
  104. void *udata );
  105. SECStatus
  106. SEC_AddTempNickname(PCERTCertDBHandle *handle, char *nickname, SECItem *certKey);
  107. SECStatus
  108. SEC_DeleteTempNickname(PCERTCertDBHandle *handle, char *nickname);
  109. PRBool
  110. SEC_CertDBKeyConflict(SECItem *derCert, PCERTCertDBHandle *handle);
  111. SECStatus
  112. SEC_GetCrlTimes(PCERTCrl *dates, PRTime *notBefore, PRTime *notAfter);
  113. PCERTSignedCrl *
  114. SEC_AddPermCrlToTemp(PCERTCertDBHandle *handle, certDBEntryRevocation *entry);
  115. SECStatus
  116. SEC_DeleteTempCrl(PCERTSignedCrl *crl);
  117. SECStatus
  118. SEC_CheckKRL(PCERTCertDBHandle *handle,SECKEYLowPublicKey *key,
  119. PCERTCertificate *rootCert, int64 t, void *wincx);
  120. SECStatus
  121. SEC_CheckCRL(PCERTCertDBHandle *handle,PCERTCertificate *cert,
  122. PCERTCertificate *caCert, int64 t, void *wincx);
  123. SECStatus
  124. SEC_CrlReplaceUrl(PCERTSignedCrl *crl,char *url);
  125. /* Compare two certificate validity structures and return which cert should be
  126. ** preferred, based first on newer notAfter, then on newer notBefore.
  127. */
  128. CERTCompareValidityStatus
  129. CERT_CompareValidityTimes(CERTValidity* val_a, CERTValidity* val_b);
  130. #endif
  131. SEC_END_PROTOS
  132. #endif /* _CERTDB_H_ */