* 2005-03-24 0.5.0.4 released
This commit is contained in:
@ -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);
|
||||
|
@ -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) {
|
||||
|
Reference in New Issue
Block a user