* 2005-03-24 0.5.0.4 released

This commit is contained in:
jrandom
2005-03-24 07:29:27 +00:00
committed by zzz
parent 32be7f1fd8
commit e614a2f726
8 changed files with 19 additions and 17 deletions

View File

@ -14,8 +14,8 @@ package net.i2p;
*
*/
public class CoreVersion {
public final static String ID = "$Revision: 1.30 $ $Date: 2005/03/06 19:07:28 $";
public final static String VERSION = "0.5.0.3";
public final static String ID = "$Revision: 1.31 $ $Date: 2005/03/18 17:34:53 $";
public final static String VERSION = "0.5.0.4";
public static void main(String args[]) {
System.out.println("I2P Core version: " + VERSION);

View File

@ -178,7 +178,7 @@ public final class SHA1 extends MessageDigest implements Cloneable {
* java.security.MessageDigestSpi.
* @param input the array of bytes to use for the update.
* @param offset the offset to start from in the array of bytes.
* @param length the number of bytes to use, starting at offset.
* @param len the number of bytes to use, starting at offset.
*/
public void engineUpdate(byte[] input, int offset, int len) {
if (offset >= 0 && len >= 0 && offset + len <= input.length) {