|
From: <pe...@us...> - 2003-10-28 23:44:44
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/signers/commandline
In directory sc8-pr-cvs1:/tmp/cvs-serv8821/src/java/org/neuclear/signers/commandline
Modified Files:
CommandLineSigner.java
Log Message:
The PassPhraseDialogue now works. It simply presents itself as a simple modal dialog box asking for a passphrase.
The two SignerStore implementations both use it for the passphrase.
Index: CommandLineSigner.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/signers/commandline/CommandLineSigner.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** CommandLineSigner.java 25 Oct 2003 00:39:54 -0000 1.8
--- CommandLineSigner.java 28 Oct 2003 23:44:35 -0000 1.9
***************
*** 1,4 ****
--- 1,8 ----
/* $Id$
* $Log$
+ * Revision 1.9 2003/10/28 23:44:35 pelle
+ * The PassPhraseDialogue now works. It simply presents itself as a simple modal dialog box asking for a passphrase.
+ * The two SignerStore implementations both use it for the passphrase.
+ *
* Revision 1.8 2003/10/25 00:39:54 pelle
* Fixed SmtpSender it now sends the messages.
***************
*** 290,294 ****
protected CommandLine cmd;
protected Options options;
! protected final static String keystore = System.getProperty("user.home") + "/.keystore";
protected final KeyStore ks;
protected String alias;
--- 294,298 ----
protected CommandLine cmd;
protected Options options;
! public final static String keystore = System.getProperty("user.home") + "/.keystore";
protected final KeyStore ks;
protected String alias;
|