ckfwm.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /* 
  2.  * The contents of this file are subject to the Mozilla Public
  3.  * License Version 1.1 (the "License"); you may not use this file
  4.  * except in compliance with the License. You may obtain a copy of
  5.  * the License at http://www.mozilla.org/MPL/
  6.  * 
  7.  * Software distributed under the License is distributed on an "AS
  8.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9.  * implied. See the License for the specific language governing
  10.  * rights and limitations under the License.
  11.  * 
  12.  * The Original Code is the Netscape security libraries.
  13.  * 
  14.  * The Initial Developer of the Original Code is Netscape
  15.  * Communications Corporation.  Portions created by Netscape are 
  16.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  17.  * Rights Reserved.
  18.  * 
  19.  * Contributor(s):
  20.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #ifndef CKFWM_H
  34. #define CKFWM_H
  35. #ifdef DEBUG
  36. static const char CKFWM_CVS_ID[] = "@(#) $RCSfile: ckfwm.h,v $ $Revision: 1.1 $ $Date: 2000/03/31 19:43:12 $ $Name: NSS_3_1_1_RTM $";
  37. #endif /* DEBUG */
  38. /*
  39.  * ckfwm.h
  40.  *
  41.  * This file prototypes the module-private calls of the NSS Cryptoki Framework.
  42.  */
  43. #ifndef NSSBASET_H
  44. #include "nssbaset.h"
  45. #endif /* NSSBASET_H */
  46. #ifndef NSSCKT_H
  47. #include "nssckt.h"
  48. #endif /* NSSCKT_H */
  49. #ifndef NSSCKFWT_H
  50. #include "nssckfwt.h"
  51. #endif /* NSSCKFWT_H */
  52. /*
  53.  * nssCKFWHash
  54.  *
  55.  *  nssCKFWHash_Create
  56.  *  nssCKFWHash_Destroy
  57.  *  nssCKFWHash_Add
  58.  *  nssCKFWHash_Remove
  59.  *  nssCKFWHash_Count
  60.  *  nssCKFWHash_Exists
  61.  *  nssCKFWHash_Lookup
  62.  *  nssCKFWHash_Iterate
  63.  */
  64. /*
  65.  * nssCKFWHash_Create
  66.  *
  67.  */
  68. NSS_EXTERN nssCKFWHash *
  69. nssCKFWHash_Create
  70. (
  71.   NSSCKFWInstance *fwInstance,
  72.   NSSArena *arena,
  73.   CK_RV *pError
  74. );
  75. /*
  76.  * nssCKFWHash_Destroy
  77.  *
  78.  */
  79. NSS_EXTERN void
  80. nssCKFWHash_Destroy
  81. (
  82.   nssCKFWHash *hash
  83. );
  84. /*
  85.  * nssCKFWHash_Add
  86.  *
  87.  */
  88. NSS_EXTERN CK_RV
  89. nssCKFWHash_Add
  90. (
  91.   nssCKFWHash *hash,
  92.   const void *key,
  93.   const void *value
  94. );
  95. /*
  96.  * nssCKFWHash_Remove
  97.  *
  98.  */
  99. NSS_EXTERN void
  100. nssCKFWHash_Remove
  101. (
  102.   nssCKFWHash *hash,
  103.   const void *it
  104. );
  105. /*
  106.  * nssCKFWHash_Count
  107.  *
  108.  */
  109. NSS_EXTERN CK_ULONG
  110. nssCKFWHash_Count
  111. (
  112.   nssCKFWHash *hash
  113. );
  114. /*
  115.  * nssCKFWHash_Exists
  116.  *
  117.  */
  118. NSS_EXTERN CK_BBOOL
  119. nssCKFWHash_Exists
  120. (
  121.   nssCKFWHash *hash,
  122.   const void *it
  123. );
  124. /*
  125.  * nssCKFWHash_Lookup
  126.  *
  127.  */
  128. NSS_EXTERN void *
  129. nssCKFWHash_Lookup
  130. (
  131.   nssCKFWHash *hash,
  132.   const void *it
  133. );
  134. /*
  135.  * nssCKFWHash_Iterate
  136.  *
  137.  */
  138. NSS_EXTERN void
  139. nssCKFWHash_Iterate
  140. (
  141.   nssCKFWHash *hash,
  142.   nssCKFWHashIterator fcn,
  143.   void *closure
  144. );
  145. #endif /* CKFWM_H */