[Webfunds-commits] java/webfunds/ricardian KeyUtil.java
Ian Grigg
iang@cypherpunks.ai
Tue, 5 Sep 2000 15:39:03 -0400 (AST)
iang 00/09/05 15:39:03
Modified: webfunds/ricardian KeyUtil.java
Log:
used these strings in sox to extract certs for later gpg analysis in
event of failure. Might belong in cryptix-openpgp?
Revision Changes Path
1.9 +3 -3 java/webfunds/ricardian/KeyUtil.java
Index: KeyUtil.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/ricardian/KeyUtil.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- KeyUtil.java 2000/09/04 15:45:17 1.8
+++ KeyUtil.java 2000/09/05 19:39:03 1.9
@@ -1,5 +1,5 @@
/*
- * $Id: KeyUtil.java,v 1.8 2000/09/04 15:45:17 iang Exp $
+ * $Id: KeyUtil.java,v 1.9 2000/09/05 19:39:03 iang Exp $
*
* Copyright (c) 2000 Systemics Inc on behalf of
* the WebFunds Development Team. All Rights Reserved.
@@ -54,8 +54,8 @@
return (PGPSecretKey)key;
}
- static final String PUBLIC_KEY_BLOCK = "PGP PUBLIC KEY BLOCK";
- static final String SECRET_KEY_BLOCK = "PGP PRIVATE KEY BLOCK";
+ static public final String PUBLIC_KEY_BLOCK = "PGP PUBLIC KEY BLOCK";
+ static public final String SECRET_KEY_BLOCK = "PGP PRIVATE KEY BLOCK";
public static String secretKeyToString(PGPSecretKey sk)
{