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

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 SIGNTOOL_H
  34. #define SIGNTOOL_H
  35.  
  36. #define DJN_TEST
  37. #include <stdio.h>
  38. #include <string.h>
  39. #include "errno.h"
  40. #include "prprf.h"
  41. #include "prio.h"
  42. #include "secutil.h"
  43. #include "jar.h"
  44. #include "jarfile.h"
  45. #include "secpkcs7.h"
  46. #include "pk11func.h"
  47. #include "secmod.h"
  48. #include "plhash.h"
  49. #ifdef _UNIX
  50. #include <unistd.h> 
  51. #endif
  52. /**********************************************************************
  53.  * General Defines
  54.  */
  55. #define JAR_BASE_END JAR_BASE + 100
  56. #define ERRX (-1) /* the exit code used on failure */
  57. #define FNSIZE 256 /* the maximum length for filenames */
  58. #define MAX_RSA_KEY_SIZE 4096
  59. #define DEFAULT_RSA_KEY_SIZE 1024
  60. #define MANIFEST "manifest.mf"
  61. #define DEFAULT_X509_BASENAME "x509"
  62. #define DEFAULT_COMMON_NAME "Signtool 1.3 Testing Certificate"
  63. #define CREATOR  "Signtool (signtool 1.3)"
  64. #define BREAKAGE "PLEASE DO NOT EDIT THIS FILE. YOU WILL BREAK IT."
  65. #define MIN_COMPRESSION_LEVEL (-1)
  66. #define MAX_COMPRESSION_LEVEL 9
  67. #define DEFAULT_COMPRESSION_LEVEL (-1) /* zlib understands this to be default*/
  68. #define STDIN_BUF_SIZE 160
  69. #define PROGRAM_NAME "signtool"
  70. #define LONG_PROGRAM_NAME "Signing Tool"
  71. #define DEFAULT_BASE_NAME "zigbert"
  72. #define VERSION "1.3"
  73. #define TMP_OUTPUT "signtool.tmp"
  74. /***************************************************************
  75.  * Main Task Functions
  76.  */
  77. void GenerateCert(char *nickname, int keysize, char *token);
  78. int ListCerts(char *key, int list_certs);
  79. int VerifyJar(char *filename);
  80. int SignArchive(char *tree, char *keyName, char *zip_file, int javascript,
  81. char *meta_file, char *install_script, int _optimize, PRBool recurse);
  82. int SignAllArc(char *jartree, char *keyName, int javascript, char *metafile,
  83. char *install_script, int optimize, PRBool recurse);
  84. int InlineJavaScript(char *dir, PRBool recurse);
  85. void JarWho(char *filename);
  86. void JarListModules(void);
  87. /**************************************************************
  88.  * Utility Functions
  89.  */
  90. CERTCertDBHandle *OpenCertDB (PRBool readOnly);
  91. int RemoveAllArc(char *tree);
  92. void VerifyCertDir(char *dir, char *keyName);
  93. int InitCrypto(char *cert_dir, PRBool readOnly);
  94. int foreach (char *dirname, char *prefix,
  95. int (*fn)(char *filename, char *dirname, char *basedir,char *base,void*arg),
  96. PRBool recurse, PRBool includeDirs, void *arg);
  97. void print_error (int i);
  98. void give_help (int status);
  99. const char* secErrorString(long code);
  100. void displayVerifyLog(CERTVerifyLog *log);
  101. void usage (void);
  102. char* chop(char*);
  103. void out_of_memory(void);
  104. void FatalError(char *msg);
  105. char* get_default_cert_dir(void);
  106. SECItem *password_hardcode(void *arg, SECKEYKeyDBHandle *handle);
  107. char* pk11_password_hardcode(PK11SlotInfo *slot, PRBool retry, void *arg);
  108. int rm_dash_r(char *path);
  109. char* pr_fgets(char *buf, int size, PRFileDesc *file);
  110. /*****************************************************************
  111.  * Global Variables (*gag*)
  112.  */
  113. extern char *password; /* the password passed in on the command line */
  114. extern PLHashTable *excludeDirs;  /* directory entry to skip while recursing */
  115. extern int no_time;
  116. extern char *base; /* basename of ".rsa" and ".sf" files */
  117. extern long *mozilla_event_queue;
  118. extern char *progName; /* argv[0] */
  119. extern PLHashTable *extensions;/* only sign files with this extension */
  120. extern PRBool extensionsGiven;
  121. extern char *scriptdir;
  122. extern int compression_level;
  123. extern PRFileDesc *outputFD, *errorFD;
  124. extern int verbosity;
  125. extern int errorCount;
  126. extern int warningCount;
  127. #endif /* SIGNTOOL_H */