home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / createCertInfo.js < prev    next >
Text File  |  2001-08-14  |  1KB  |  44 lines

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  *
  3.  * The contents of this file are subject to the Mozilla Public
  4.  * License Version 1.1 (the "License"); you may not use this file
  5.  * except in compliance with the License. You may obtain a copy of
  6.  * the License at http://www.mozilla.org/MPL/
  7.  *
  8.  * Software distributed under the License is distributed on an "AS
  9.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.  * implied. See the License for the specific language governing
  11.  * rights and limitations under the License.
  12.  *
  13.  * The Original Code is mozilla.org code.
  14.  *
  15.  * The Initial Developer of the Original Code is Netscape
  16.  * Communications Corporation.  Portions created by Netscape are
  17.  * Copyright (C) 1998 Netscape Communications Corporation. All
  18.  * Rights Reserved.
  19.  */
  20.  
  21. var keygenThread;
  22.  
  23. function onLoad()
  24. {
  25.   keygenThread = window.arguments[0].QueryInterface(Components.interfaces.nsIKeygenThread);
  26.   
  27.   if (!keygenThread) {
  28.     window.close();
  29.     return;
  30.   }
  31.   
  32.   setCursor("wait");
  33.   
  34.   keygenThread.startKeyGeneration(window);
  35. }
  36.  
  37. function onClose()
  38. {
  39.   setCursor("default");
  40.  
  41.   var alreadyClosed = new Object();
  42.   keygenThread.userCanceled(alreadyClosed);
  43. }
  44.