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

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * private.h - Private data structures for the software token library
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public
  5.  * License Version 1.1 (the "License"); you may not use this file
  6.  * except in compliance with the License. You may obtain a copy of
  7.  * the License at http://www.mozilla.org/MPL/
  8.  * 
  9.  * Software distributed under the License is distributed on an "AS
  10.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.  * implied. See the License for the specific language governing
  12.  * rights and limitations under the License.
  13.  * 
  14.  * The Original Code is the Netscape security libraries.
  15.  * 
  16.  * The Initial Developer of the Original Code is Netscape
  17.  * Communications Corporation.  Portions created by Netscape are 
  18.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  19.  * Rights Reserved.
  20.  * 
  21.  * Contributor(s):
  22.  * 
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License Version 2 or later (the
  25.  * "GPL"), in which case the provisions of the GPL are applicable 
  26.  * instead of those above.  If you wish to allow use of your 
  27.  * version of this file only under the terms of the GPL and not to
  28.  * allow others to use your version of this file under the MPL,
  29.  * indicate your decision by deleting the provisions above and
  30.  * replace them with the notice and other provisions required by
  31.  * the GPL.  If you do not delete the provisions above, a recipient
  32.  * may use your version of this file under either the MPL or the
  33.  * GPL.
  34.  *
  35.  * $Id: private.h,v 1.1 2000/03/31 19:29:27 relyea%netscape.com Exp $
  36.  */
  37. #ifndef _PRIVATE_H_
  38. #define _PRIVATE_H_
  39. #include "nspr.h"
  40. #include "seccomon.h"
  41. #include "mcom_db.h"
  42. /*
  43.  * Handle structure for open key databases
  44.  */
  45. struct SECKEYKeyDBHandleStr {
  46.     DB *db;
  47.     DB *updatedb; /* used when updating an old version */
  48.     SECItem *global_salt; /* password hashing salt for this db */
  49.     int version; /* version of the database */
  50. };
  51. /*
  52. ** Typedef for callback for traversing key database.
  53. **      "key" is the key used to index the data in the database (nickname)
  54. **      "data" is the key data
  55. **      "pdata" is the user's data 
  56. */
  57. typedef SECStatus (* SECKEYTraverseKeysFunc)(DBT *key, DBT *data, void *pdata);
  58. SEC_BEGIN_PROTOS
  59. /*
  60. ** Traverse the entire key database, and pass the nicknames and keys to a 
  61. ** user supplied function.
  62. **      "f" is the user function to call for each key
  63. **      "udata" is the user's data, which is passed through to "f"
  64. */
  65. extern SECStatus SECKEY_TraverseKeys(SECKEYKeyDBHandle *handle, 
  66. SECKEYTraverseKeysFunc f,
  67. void *udata);
  68. SEC_END_PROTOS
  69. #endif /* _PRIVATE_H_ */