aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/gnu/java/security/hash
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/classpath/gnu/java/security/hash')
-rw-r--r--libjava/classpath/gnu/java/security/hash/BaseHash.java10
-rw-r--r--libjava/classpath/gnu/java/security/hash/HashFactory.java6
-rw-r--r--libjava/classpath/gnu/java/security/hash/Haval.java8
-rw-r--r--libjava/classpath/gnu/java/security/hash/IMessageDigest.java20
-rw-r--r--libjava/classpath/gnu/java/security/hash/MD2.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/MD4.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/MD5.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/RipeMD128.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/RipeMD160.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/Sha160.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/Sha256.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/Sha384.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/Sha512.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/Tiger.java2
-rw-r--r--libjava/classpath/gnu/java/security/hash/Whirlpool.java4
15 files changed, 34 insertions, 34 deletions
diff --git a/libjava/classpath/gnu/java/security/hash/BaseHash.java b/libjava/classpath/gnu/java/security/hash/BaseHash.java
index ff1750a..bab930f 100644
--- a/libjava/classpath/gnu/java/security/hash/BaseHash.java
+++ b/libjava/classpath/gnu/java/security/hash/BaseHash.java
@@ -1,4 +1,4 @@
-/* BaseHash.java --
+/* BaseHash.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -61,7 +61,7 @@ public abstract class BaseHash
/**
* Trivial constructor for use by concrete subclasses.
- *
+ *
* @param name the canonical name prefix of this instance.
* @param hashSize the block size of the output in bytes.
* @param blockSize the block size of the internal transform.
@@ -156,7 +156,7 @@ public abstract class BaseHash
/**
* Returns the byte array to use as padding before completing a hash
* operation.
- *
+ *
* @return the bytes to pad the remaining bytes in the buffer before
* completing a hash operation.
*/
@@ -164,7 +164,7 @@ public abstract class BaseHash
/**
* Constructs the result from the contents of the current context.
- *
+ *
* @return the output of the completed hash operation.
*/
protected abstract byte[] getResult();
@@ -174,7 +174,7 @@ public abstract class BaseHash
/**
* The block digest transformation per se.
- *
+ *
* @param in the <i>blockSize</i> long block, as an array of bytes to digest.
* @param offset the index where the data to digest is located within the
* input buffer.
diff --git a/libjava/classpath/gnu/java/security/hash/HashFactory.java b/libjava/classpath/gnu/java/security/hash/HashFactory.java
index 2a4e487..1210ff4 100644
--- a/libjava/classpath/gnu/java/security/hash/HashFactory.java
+++ b/libjava/classpath/gnu/java/security/hash/HashFactory.java
@@ -1,4 +1,4 @@
-/* HashFactory.java --
+/* HashFactory.java --
Copyright (C) 2001, 2002, 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -57,7 +57,7 @@ public class HashFactory
/**
* Return an instance of a hash algorithm given its name.
- *
+ *
* @param name the name of the hash algorithm.
* @return an instance of the hash algorithm, or null if none found.
* @exception InternalError if the implementation does not pass its self-
@@ -111,7 +111,7 @@ public class HashFactory
/**
* Returns a {@link Set} of names of hash algorithms supported by this
* <i>Factory</i>.
- *
+ *
* @return a {@link Set} of hash names (Strings).
*/
public static final Set getNames()
diff --git a/libjava/classpath/gnu/java/security/hash/Haval.java b/libjava/classpath/gnu/java/security/hash/Haval.java
index 662934f..15c3039 100644
--- a/libjava/classpath/gnu/java/security/hash/Haval.java
+++ b/libjava/classpath/gnu/java/security/hash/Haval.java
@@ -1,4 +1,4 @@
-/* Haval.java --
+/* Haval.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -105,7 +105,7 @@ public class Haval
/**
* Calls the constructor with two arguments using the designated output size,
* and {@link #HAVAL_3_ROUND} for the value of number of rounds.
- *
+ *
* @param size the output size in bytes of this instance.
* @throws IllegalArgumentException if the designated output size is invalid.
* @see #HAVAL_128_BIT
@@ -125,7 +125,7 @@ public class Haval
* <code>20</code>, <code>24</code>, <code>28</code> and
* <code>32</code>. Valid values for <code>rounds</code> are in the range
* <code>3..5</code> inclusive.
- *
+ *
* @param size the output size in bytes of this instance.
* @param rounds the number of rounds to apply when transforming data.
* @throws IllegalArgumentException if the designated output size is invalid,
@@ -160,7 +160,7 @@ public class Haval
/**
* Private constructor for cloning purposes.
- *
+ *
* @param md the instance to clone.
*/
private Haval(Haval md)
diff --git a/libjava/classpath/gnu/java/security/hash/IMessageDigest.java b/libjava/classpath/gnu/java/security/hash/IMessageDigest.java
index 2c5bdd4..9b716e5 100644
--- a/libjava/classpath/gnu/java/security/hash/IMessageDigest.java
+++ b/libjava/classpath/gnu/java/security/hash/IMessageDigest.java
@@ -1,4 +1,4 @@
-/* IMessageDigest.java --
+/* IMessageDigest.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -49,28 +49,28 @@ public interface IMessageDigest
{
/**
* Returns the canonical name of this algorithm.
- *
+ *
* @return the canonical name of this instance.
*/
String name();
/**
* Returns the output length in bytes of this message digest algorithm.
- *
+ *
* @return the output length in bytes of this message digest algorithm.
*/
int hashSize();
/**
* Returns the algorithm's (inner) block size in bytes.
- *
+ *
* @return the algorithm's inner block size in bytes.
*/
int blockSize();
/**
* Continues a message digest operation using the input byte.
- *
+ *
* @param b the input byte to digest.
*/
void update(byte b);
@@ -79,7 +79,7 @@ public interface IMessageDigest
* Continues a message digest operation, by filling the buffer, processing
* data in the algorithm's HASH_SIZE-bit block(s), updating the context and
* count, and buffering the remaining bytes in buffer for the next operation.
- *
+ *
* @param in the input block.
*/
void update(byte[] in);
@@ -88,7 +88,7 @@ public interface IMessageDigest
* Continues a message digest operation, by filling the buffer, processing
* data in the algorithm's HASH_SIZE-bit block(s), updating the context and
* count, and buffering the remaining bytes in buffer for the next operation.
- *
+ *
* @param in the input block.
* @param offset start of meaningful bytes in input block.
* @param length number of bytes, in input block, to consider.
@@ -98,7 +98,7 @@ public interface IMessageDigest
/**
* Completes the message digest by performing final operations such as padding
* and resetting the instance.
- *
+ *
* @return the array of bytes representing the hash value.
*/
byte[] digest();
@@ -112,7 +112,7 @@ public interface IMessageDigest
/**
* A basic test. Ensures that the digest of a pre-determined message is equal
* to a known pre-computed value.
- *
+ *
* @return <code>true</code> if the implementation passes a basic self-test.
* Returns <code>false</code> otherwise.
*/
@@ -120,7 +120,7 @@ public interface IMessageDigest
/**
* Returns a clone copy of this instance.
- *
+ *
* @return a clone copy of this instance.
*/
Object clone();
diff --git a/libjava/classpath/gnu/java/security/hash/MD2.java b/libjava/classpath/gnu/java/security/hash/MD2.java
index 8f6b265..d78af93 100644
--- a/libjava/classpath/gnu/java/security/hash/MD2.java
+++ b/libjava/classpath/gnu/java/security/hash/MD2.java
@@ -1,4 +1,4 @@
-/* MD2.java --
+/* MD2.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/MD4.java b/libjava/classpath/gnu/java/security/hash/MD4.java
index dfc1c6b..e6ac11b 100644
--- a/libjava/classpath/gnu/java/security/hash/MD4.java
+++ b/libjava/classpath/gnu/java/security/hash/MD4.java
@@ -1,4 +1,4 @@
-/* MD4.java --
+/* MD4.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/MD5.java b/libjava/classpath/gnu/java/security/hash/MD5.java
index 6530785..dfffd3c 100644
--- a/libjava/classpath/gnu/java/security/hash/MD5.java
+++ b/libjava/classpath/gnu/java/security/hash/MD5.java
@@ -1,4 +1,4 @@
-/* MD5.java --
+/* MD5.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/RipeMD128.java b/libjava/classpath/gnu/java/security/hash/RipeMD128.java
index 62f5a05..bd0adc5 100644
--- a/libjava/classpath/gnu/java/security/hash/RipeMD128.java
+++ b/libjava/classpath/gnu/java/security/hash/RipeMD128.java
@@ -1,4 +1,4 @@
-/* RipeMD128.java --
+/* RipeMD128.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/RipeMD160.java b/libjava/classpath/gnu/java/security/hash/RipeMD160.java
index 7949bc2..795f5a4 100644
--- a/libjava/classpath/gnu/java/security/hash/RipeMD160.java
+++ b/libjava/classpath/gnu/java/security/hash/RipeMD160.java
@@ -1,4 +1,4 @@
-/* RipeMD160.java --
+/* RipeMD160.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/Sha160.java b/libjava/classpath/gnu/java/security/hash/Sha160.java
index 6adeba0..88bf0e4 100644
--- a/libjava/classpath/gnu/java/security/hash/Sha160.java
+++ b/libjava/classpath/gnu/java/security/hash/Sha160.java
@@ -1,4 +1,4 @@
-/* Sha160.java --
+/* Sha160.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/Sha256.java b/libjava/classpath/gnu/java/security/hash/Sha256.java
index 536b1c8..76e28d4 100644
--- a/libjava/classpath/gnu/java/security/hash/Sha256.java
+++ b/libjava/classpath/gnu/java/security/hash/Sha256.java
@@ -1,4 +1,4 @@
-/* Sha256.java --
+/* Sha256.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/Sha384.java b/libjava/classpath/gnu/java/security/hash/Sha384.java
index a47eb67..5fea4f3 100644
--- a/libjava/classpath/gnu/java/security/hash/Sha384.java
+++ b/libjava/classpath/gnu/java/security/hash/Sha384.java
@@ -1,4 +1,4 @@
-/* Sha384.java --
+/* Sha384.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/Sha512.java b/libjava/classpath/gnu/java/security/hash/Sha512.java
index e6f553e..17c4323 100644
--- a/libjava/classpath/gnu/java/security/hash/Sha512.java
+++ b/libjava/classpath/gnu/java/security/hash/Sha512.java
@@ -1,4 +1,4 @@
-/* Sha512.java --
+/* Sha512.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/Tiger.java b/libjava/classpath/gnu/java/security/hash/Tiger.java
index 101df39..d2993db 100644
--- a/libjava/classpath/gnu/java/security/hash/Tiger.java
+++ b/libjava/classpath/gnu/java/security/hash/Tiger.java
@@ -1,4 +1,4 @@
-/* Tiger.java --
+/* Tiger.java --
Copyright (C) 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
diff --git a/libjava/classpath/gnu/java/security/hash/Whirlpool.java b/libjava/classpath/gnu/java/security/hash/Whirlpool.java
index aebe1ac..5741040 100644
--- a/libjava/classpath/gnu/java/security/hash/Whirlpool.java
+++ b/libjava/classpath/gnu/java/security/hash/Whirlpool.java
@@ -1,4 +1,4 @@
-/* Whirlpool.java --
+/* Whirlpool.java --
Copyright (C) 2001, 2002, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -548,7 +548,7 @@ public final class Whirlpool
// so far. hence the minimal number of bytes added to the message proper
// are 33 (1 for the 1-bit followed by the 0-bits and the encoding of
// the count framed in a 256-bit block). our formula is then:
- // count + 33 + padding = 0 (mod BLOCK_SIZE)
+ // count + 33 + padding = 0 (mod BLOCK_SIZE)
int n = (int)((count + 33) % BLOCK_SIZE);
int padding = n == 0 ? 33 : BLOCK_SIZE - n + 33;
byte[] result = new byte[padding];