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

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. /* JAR internal routines */
  34. #include "nspr.h"
  35. /* definitely required */
  36. #include "certdb.h"
  37. #include "key.h"
  38. #include "base64.h"
  39. extern CERTCertDBHandle *JAR_open_database (void);
  40. extern int JAR_close_database (CERTCertDBHandle *certdb);
  41. extern int jar_close_key_database (SECKEYKeyDBHandle *keydb);
  42. extern SECKEYKeyDBHandle *jar_open_key_database (void);
  43. extern JAR_Signer *JAR_new_signer (void);
  44. extern void JAR_destroy_signer (JAR_Signer *signer);
  45. extern JAR_Signer *jar_get_signer (JAR *jar, char *basename);
  46. extern int jar_append (ZZList *list, int type,
  47.    char *pathname, void *data, size_t size);
  48. /* Translate fopen mode arg to PR_Open flags and mode */
  49. PRFileDesc*
  50. JAR_FOPEN_to_PR_Open(const char *name, const char *mode);
  51. #define ADDITEM(list,type,pathname,data,size) 
  52.   { int err; err = jar_append (list, type, pathname, data, size); 
  53.     if (err < 0) return err; }
  54. /* Here is some ugliness in the event it is necessary to link
  55.    with NSPR 1.0 libraries, which do not include an FSEEK. It is 
  56.    difficult to fudge an FSEEK into 1.0 so we use stdio. */
  57. /* stdio */
  58. #if 0
  59. #define JAR_FILE FILE *
  60. #define JAR_FOPEN(fn,mode) fopen(fn,mode)
  61. #define JAR_FCLOSE fclose
  62. #define JAR_FSEEK fseek
  63. #define JAR_FREAD(fp,buf,siz) fread(buf,1,siz,fp)
  64. #define JAR_FWRITE(fp,buf,siz) fwrite(buf,1,siz,fp) 
  65. #endif
  66. #if 0
  67. /* nspr 1.0 suite */
  68. #define JAR_FILE PRFileHandle
  69. #define JAR_FOPEN(fn,mode) PR_OpenFile(fn,0,mode)
  70. #define JAR_FCLOSE PR_CLOSE
  71. #define JAR_FSEEK (no-equivalent)
  72. #define JAR_FREAD PR_READ
  73. #define JAR_FWRITE PR_WRITE
  74. #endif
  75. /* nspr 2.0 suite */
  76. #define JAR_FILE PRFileDesc *
  77. /* #define JAR_FOPEN(fn,mode) PR_Open(fn,0,0) */
  78. #define JAR_FOPEN(fn,mode) JAR_FOPEN_to_PR_Open(fn,mode)
  79. #define JAR_FCLOSE PR_Close
  80. #define JAR_FSEEK PR_Seek
  81. #define JAR_FREAD PR_Read
  82. #define JAR_FWRITE PR_Write
  83. #if 0
  84. /* nav XP suite, note argument order */
  85. #define JAR_FILE XP_File
  86. #define JAR_FOPEN(fn,mode) XP_FileOpen(fn,xpURL,mode)
  87. #define JAR_FCLOSE XP_FileClose
  88. #define JAR_FSEEK XP_FileSeek
  89. #define JAR_FREAD(fp,buf,siz) XP_FileRead(buf,siz,fp)
  90. #define JAR_FWRITE(fp,buf,siz) XP_FileWrite(buf,siz,fp)
  91. #endif
  92. int jar_create_pk7
  93.    (CERTCertDBHandle *certdb, SECKEYKeyDBHandle *keydb,
  94.        CERTCertificate *cert, char *password, JAR_FILE infp, 
  95.        JAR_FILE outfp);