From: <ed...@bo...> - 2003-08-23 23:08:30
|
edwin 03/08/23 19:08:27 Modified: openpgp CHANGELOG.TXT README.TXT build.xml Added: openpgp dist.bat Log: New release. Revision Changes Path 1.25 +1 -1 projects/openpgp/CHANGELOG.TXT Index: CHANGELOG.TXT =================================================================== RCS file: /home/cryptix-cvs/cvsroot/projects/openpgp/CHANGELOG.TXT,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- CHANGELOG.TXT 23 Aug 2003 22:17:49 -0000 1.24 +++ CHANGELOG.TXT 23 Aug 2003 23:08:26 -0000 1.25 @@ -1,4 +1,4 @@ -???????? snapshot +20030823 snapshot Incompatible changes - Changed the order of the arguments for the addPrivateKey method in KeyBundle to be more consistent with addPrivateSubKey in PGPKeyBundle. Any application 1.9 +25 -9 projects/openpgp/README.TXT Index: README.TXT =================================================================== RCS file: /home/cryptix-cvs/cvsroot/projects/openpgp/README.TXT,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- README.TXT 9 Feb 2003 21:23:08 -0000 1.8 +++ README.TXT 23 Aug 2003 23:08:26 -0000 1.9 @@ -68,20 +68,35 @@ numbers. -4. Documentation +4. Installing the policy files + + This section only applies if you are running JDK 1.4+ that comes with the + Sun JCE by default, or JDK 1.2/1.3 if you have installed Sun JCE 1.2 + manually. + + The default distribution of the JCE allows as Sun calls it 'strong, + but limited strength cryptography'. This basically means that you + cannot use RSA keys bigger than 2048 bits, and no symmetric ciphers + that use more than 128 bits. ElGamal is not allowed at all, thus + DH/DSS cannot be used for encryption. + + The solution is to install the Unlimited Strength Jurisdiction + Policy files, which can be downloaded from the following URL (note + that they are listed entirely at the bottom of the page): + + http://java.sun.com/j2se/1.4/download.html + + These files have to be installed in $JAVA_HOME$/jre/lib/security + + +5. Documentation In the released versions, documentation can be found in doc/ - There are several javadoc trees there: - - doc/message/ - documents the Cryptix Message API (see section D below) - - doc/pki/ - documents the Cryptix PKI API (see section C below) - - doc/highlevel/ - documents the High-level interface (contains both the - Message and PKI API's together with some OpenPGP - specific extensions). Example programs can be found in examples/ -5. Support +6. Support A mailing list is available for getting support: the cryptix-users list. Subscription instructions are available at: @@ -202,4 +217,5 @@ F. Contributing If you have anything to contribute, please use the cryptix-users list - (see section 5) or mail me privately: ed...@cr... + (see section 6) or mail me privately: ed...@cr... + \ No newline at end of file 1.28 +1 -1 projects/openpgp/build.xml Index: build.xml =================================================================== RCS file: /home/cryptix-cvs/cvsroot/projects/openpgp/build.xml,v retrieving revision 1.27 retrieving revision 1.28 diff -u -r1.27 -r1.28 --- build.xml 23 Aug 2003 11:15:47 -0000 1.27 +++ build.xml 23 Aug 2003 23:08:26 -0000 1.28 @@ -59,7 +59,7 @@ <!-- Distribution .......................................................... --> - <target name="dist" depends="clean, compile, test, jars, docs"> + <target name="dist" depends="compile, test, jars, docs"> <zip zipfile="${build.dist}/cryptix-openpgp-${filerelease}.zip"> <zipfileset dir="${basedir}" includes="LICENCE.TXT" /> <zipfileset dir="${basedir}" includes="README.TXT" /> 1.1 projects/openpgp/dist.bat Index: dist.bat =================================================================== call jdk13 call ant clean call jdk12 call antnojit compile call jdk13 call ant dist |