/security/nss/lib/certdb/certdb.h

http://github.com/zpao/v8monkey · C Header · 115 lines · 55 code · 20 blank · 40 comment · 2 complexity · 2804ef95c474f35ee75191dae3925daf 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_TERMINAL_RECORD (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. /* old usage, to keep old programs compiling */
  50. /* On Windows, Mac, and Linux (and other gcc platforms), we can give compile
  51. * time deprecation warnings when applications use the old CERTDB_VALID_PEER
  52. * define */
  53. #if __GNUC__ > 3
  54. #if (__GNUC__ == 4) && (__GNUC_MINOR__ < 5)
  55. typedef unsigned int __CERTDB_VALID_PEER __attribute__((deprecated));
  56. #else
  57. typedef unsigned int __CERTDB_VALID_PEER __attribute__((deprecated
  58. ("CERTDB_VALID_PEER is now CERTDB_TERMINAL_RECORD")));
  59. #endif
  60. #define CERTDB_VALID_PEER ((__CERTDB_VALID_PEER) CERTDB_TERMINAL_RECORD)
  61. #else
  62. #ifdef _WIN32
  63. #pragma deprecated(CERTDB_VALID_PEER)
  64. #endif
  65. #define CERTDB_VALID_PEER CERTDB_TERMINAL_RECORD
  66. #endif
  67. SEC_BEGIN_PROTOS
  68. CERTSignedCrl *
  69. SEC_FindCrlByKey(CERTCertDBHandle *handle, SECItem *crlKey, int type);
  70. CERTSignedCrl *
  71. SEC_FindCrlByName(CERTCertDBHandle *handle, SECItem *crlKey, int type);
  72. CERTSignedCrl *
  73. SEC_FindCrlByDERCert(CERTCertDBHandle *handle, SECItem *derCrl, int type);
  74. PRBool
  75. SEC_CertNicknameConflict(const char *nickname, SECItem *derSubject,
  76. CERTCertDBHandle *handle);
  77. CERTSignedCrl *
  78. SEC_NewCrl(CERTCertDBHandle *handle, char *url, SECItem *derCrl, int type);
  79. SECStatus
  80. SEC_DeletePermCRL(CERTSignedCrl *crl);
  81. SECStatus
  82. SEC_LookupCrls(CERTCertDBHandle *handle, CERTCrlHeadNode **nodes, int type);
  83. SECStatus
  84. SEC_DestroyCrl(CERTSignedCrl *crl);
  85. CERTSignedCrl* SEC_DupCrl(CERTSignedCrl* acrl);
  86. SECStatus
  87. CERT_AddTempCertToPerm(CERTCertificate *cert, char *nickname,
  88. CERTCertTrust *trust);
  89. SECStatus SEC_DeletePermCertificate(CERTCertificate *cert);
  90. PRBool
  91. SEC_CrlIsNewer(CERTCrl *inNew, CERTCrl *old);
  92. SECCertTimeValidity
  93. SEC_CheckCrlTimes(CERTCrl *crl, PRTime t);
  94. SEC_END_PROTOS
  95. #endif /* _CERTDB_H_ */