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

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. ////////////////////////////////////////////////////////////////////////////////////////
  34. // Crypto Mechanism Flags
  35. PKCS11_MECH_RSA_FLAG           =  0x1<<0; 
  36. PKCS11_MECH_DSA_FLAG           =  0x1<<1; 
  37. PKCS11_MECH_RC2_FLAG           =  0x1<<2; 
  38. PKCS11_MECH_RC4_FLAG           =  0x1<<3; 
  39. PKCS11_MECH_DES_FLAG           =  0x1<<4; 
  40. PKCS11_MECH_DH_FLAG            =  0x1<<5; //Diffie-Hellman 
  41. PKCS11_MECH_SKIPJACK_FLAG      =  0x1<<6; //SKIPJACK algorithm as in Fortezza cards 
  42. PKCS11_MECH_RC5_FLAG           =  0x1<<7; 
  43. PKCS11_MECH_SHA1_FLAG          =  0x1<<8; 
  44. PKCS11_MECH_MD5_FLAG           =  0x1<<9; 
  45. PKCS11_MECH_MD2_FLAG           =  0x1<<10; 
  46. PKCS11_MECH_RANDOM_FLAG        =  0x1<<27; //Random number generator 
  47. PKCS11_PUB_READABLE_CERT_FLAG  =  0x1<<28; //Stored certs can be read off the token w/o logging in 
  48. PKCS11_DISABLE_FLAG            =  0x1<<30; //tell Navigator to disable this slot by default 
  49. // Important: 
  50. // 0x1<<11, 0x1<<12, ... , 0x1<<26, 0x1<<29, and 0x1<<31 are reserved 
  51. // for internal use in Navigator. 
  52. // Therefore, these bits should always be set to 0; otherwise,
  53. // Navigator might exhibit unpredictable behavior. 
  54. // These flags indicate which mechanisms should be turned on by 
  55. var pkcs11MechanismFlags = 0;
  56.   
  57. ////////////////////////////////////////////////////////////////////////////////////////
  58. // Ciphers that support SSL or S/MIME 
  59. PKCS11_CIPHER_FORTEZZA_FLAG    = 0x1<<0; 
  60. // Important: 
  61. // 0x1<<1, 0x1<<2, ... , 0x1<<31 are reserved 
  62. // for internal use in Navigator. 
  63. // Therefore, these bits should ALWAYS be set to 0; otherwise, 
  64. // Navigator might exhibit unpredictable behavior. 
  65. // These flags indicate which SSL ciphers are supported 
  66. var pkcs11CipherFlags = PKCS11_CIPHER_FORTEZZA_FLAG; 
  67.   
  68. ////////////////////////////////////////////////////////////////////////////////////////
  69. // Return values of pkcs11.addmodule() & pkcs11.delmodule() 
  70. // success codes 
  71. JS_OK_ADD_MODULE                 = 3; // Successfully added a module 
  72. JS_OK_DEL_EXTERNAL_MODULE        = 2; // Successfully deleted ext. module 
  73. JS_OK_DEL_INTERNAL_MODULE        = 1; // Successfully deleted int. module 
  74. // failure codes 
  75. JS_ERR_OTHER                     = -1; // Other errors than the followings 
  76. JS_ERR_USER_CANCEL_ACTION        = -2; // User abort an action 
  77. JS_ERR_INCORRECT_NUM_OF_ARGUMENTS= -3; // Calling a method w/ incorrect # of arguments 
  78. JS_ERR_DEL_MODULE                = -4; // Error deleting a module 
  79. JS_ERR_ADD_MODULE                = -5; // Error adding a module 
  80. JS_ERR_BAD_MODULE_NAME           = -6; // The module name is invalid 
  81. JS_ERR_BAD_DLL_NAME              = -7; // The DLL name is bad 
  82. JS_ERR_BAD_MECHANISM_FLAGS       = -8; // The mechanism flags are invalid 
  83. JS_ERR_BAD_CIPHER_ENABLE_FLAGS   = -9; // The SSL, S/MIME cipher flags are invalid 
  84. ////////////////////////////////////////////////////////////////////////////////////////
  85. // Find out which library is to be installed depending on the platform
  86. // pathname seperator is platform specific
  87. var sep = "/";
  88. var vendor = "netscape";
  89. var moduleName = "not_supported";
  90. // platform-independent relative path
  91. var dir = "pkcs11/" + vendor + "/";
  92. var plat = navigator.platform;
  93. bAbort = false;
  94. progName = "instinit";
  95. if (plat == "Win32") {
  96.     moduleName = "swft32.dll";
  97.     // progName = "instinit.exe";
  98.     sep = "\";
  99. } else if (plat == "AIX4.1") {
  100.     moduleName = "libswft.so";
  101. } else if (plat == "SunOS4.1.3_U1") {
  102.     moduleName = "libswft.so.1.0";        
  103. } else if ((plat == "SunOS5.4") || (plat == "SunOS5.5.1")){
  104.     moduleName = "libswft.so";
  105. } else if ((plat == "HP-UXA.09") || (plat == "HP-UXB.10")){
  106.     moduleName = "libswft.sl";
  107. } else {
  108.     window.alert("Sorry, platform "+plat+" is not supported.");
  109.     bAbort = true;
  110. }
  111. ////////////////////////////////////////////////////////////////////////////////////////
  112. // Installation Begins...
  113. if (!bAbort) {
  114. if (confirm("This script will install and configure a security module, do you want to continue?")) { 
  115.  // Step 1. Create a version object and a software update object 
  116.  vi = new netscape.softupdate.VersionInfo(1, 5, 0, 0); 
  117.  su = new netscape.softupdate.SoftwareUpdate(this, "Fortezza Card PKCS#11 Module"); 
  118.                  // "Fortezza ... Module" is the logical name of the bundle 
  119.  ////////////////////////////////////////
  120.  // Step 2. Start the install process 
  121.  bAbort = false; 
  122.  err = su.StartInstall("NSfortezza", // NSfortezza is the component folder (logical) 
  123.                        vi, 
  124.                        netscape.softupdate.SoftwareUpdate.FULL_INSTALL); 
  125.                             
  126.  bAbort = bAbort || (err !=0); 
  127.  if (err == 0) { 
  128.      ////////////////////////////////////////
  129.     // Step 3. Find out the physical location of the Program dir 
  130.     Folder = su.GetFolder("Program"); 
  131.      ////////////////////////////////////////
  132.     // Step 4. Install the files. Unpack them and list where they go 
  133.     err = su.AddSubcomponent("FortezzaLibrary", //component name (logical) 
  134.                                     vi, // version info 
  135.                                     moduleName, // source file in JAR (physical) 
  136.                                     Folder, // target folder (physical) 
  137.                                     dir + moduleName, // target path & filename (physical) 
  138.                                     this.force); // forces update 
  139.     bAbort = bAbort || (err !=0); 
  140.     if (err != 0) window.alert("Add sub err= "+ err);
  141.  } 
  142.  if (err == 0) {
  143.     /// Try installing the init program 
  144.     err = su.AddSubcomponent("FortezzaInitProg", vi, progName, Folder, progName, this.force);
  145.     // don't fail because it didn't install, may just not be part of the package
  146. }
  147.  ////////////////////////////////////////
  148.  // Step 5. Unless there was a problem, move files to final location 
  149.  // and update the Client Version Registry 
  150.  if (bAbort) { 
  151.     window.alert("Aborting, Folder="+Folder+" module="+dir+moduleName);
  152.     su.AbortInstall(); 
  153.  } else { 
  154.     err = su.FinalizeInstall(); 
  155.     // Platform specific full path 
  156.     fullpath = Folder +  "pkcs11" + sep + vendor + sep + moduleName;
  157.      ////////////////////////////////////////
  158.     // Step 6: Call pkcs11.addmodule() to register the newly downloaded module
  159.     result = pkcs11.addmodule("Netscape Software FORTEZZA Module", 
  160.                               fullpath, 
  161.                               pkcs11MechanismFlags, 
  162.                               pkcs11CipherFlags); 
  163.     if ( result < 0) { 
  164.        window.alert("New module setup failed.  Error code: " + result); 
  165.    } else { 
  166.        window.alert("New module setup completed."); 
  167.    } 
  168.  } 
  169. }