diff options
| author | Raif S. Naffah <raif@swiftdsl.com.au> | 2006-06-18 06:59:24 +0000 |
|---|---|---|
| committer | Raif S. Naffah <raif@swiftdsl.com.au> | 2006-06-18 06:59:24 +0000 |
| commit | fea670fed7f9861bd697615716250454c33b35d4 (patch) | |
| tree | 0dffb22a08fdd74e980cbb26376407ca04142ca3 /gnu/java/security/hash/IMessageDigest.java | |
| parent | 338b9418759466ceaef4b4947fa68aea39202faf (diff) | |
| download | classpath-fea670fed7f9861bd697615716250454c33b35d4.tar.gz | |
2006-06-18 Raif S. Naffah <raif@swiftdsl.com.au>
* gnu/java/security/hash/Whirlpool.java: Source formatting.
* gnu/java/security/hash/Tiger.java: Likewise.
* gnu/java/security/hash/Sha512.java: Likewise.
* gnu/java/security/hash/Sha384.java: Likewise.
* gnu/java/security/hash/Sha256.java: Likewise.
* gnu/java/security/hash/Sha160.java: Likewise.
* gnu/java/security/hash/RipeMD160.java: Likewise.
* gnu/java/security/hash/RipeMD128.java: Likewise.
* gnu/java/security/hash/MD5.java: Likewise.
* gnu/java/security/hash/MD4.java: Likewise.
* gnu/java/security/hash/MD2.java: Likewise.
* gnu/java/security/hash/IMessageDigest.java: Likewise.
* gnu/java/security/hash/Haval.java: Likewise.
* gnu/java/security/hash/HashFactory.java: Likewise.
* gnu/java/security/hash/BaseHash.java: Likewise.
Diffstat (limited to 'gnu/java/security/hash/IMessageDigest.java')
| -rw-r--r-- | gnu/java/security/hash/IMessageDigest.java | 72 |
1 files changed, 32 insertions, 40 deletions
diff --git a/gnu/java/security/hash/IMessageDigest.java b/gnu/java/security/hash/IMessageDigest.java index b3d7f69ca..2c5bdd41a 100644 --- a/gnu/java/security/hash/IMessageDigest.java +++ b/gnu/java/security/hash/IMessageDigest.java @@ -39,64 +39,56 @@ exception statement from your version. */ package gnu.java.security.hash; /** - * <p>The basic visible methods of any hash algorithm.</p> - * - * <p>A hash (or message digest) algorithm produces its output by iterating a - * basic compression function on blocks of data.</p> + * The basic visible methods of any hash algorithm. + * <p> + * A hash (or message digest) algorithm produces its output by iterating a basic + * compression function on blocks of data. */ -public interface IMessageDigest extends Cloneable +public interface IMessageDigest + extends Cloneable { - - // Constants - // ------------------------------------------------------------------------- - - // Methods - // ------------------------------------------------------------------------- - /** - * <p>Returns the canonical name of this algorithm.</p> - * + * Returns the canonical name of this algorithm. + * * @return the canonical name of this instance. */ String name(); /** - * <p>Returns the output length in bytes of this message digest algorithm.</p> - * + * Returns the output length in bytes of this message digest algorithm. + * * @return the output length in bytes of this message digest algorithm. */ int hashSize(); /** - * <p>Returns the algorithm's (inner) block size in bytes.</p> - * + * Returns the algorithm's (inner) block size in bytes. + * * @return the algorithm's inner block size in bytes. */ int blockSize(); /** - * <p>Continues a message digest operation using the input byte.</p> - * + * Continues a message digest operation using the input byte. + * * @param b the input byte to digest. */ void update(byte b); /** - * <p>Continues a message digest operation, by filling the buffer, processing + * 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.</p> - * + * count, and buffering the remaining bytes in buffer for the next operation. + * * @param in the input block. */ void update(byte[] in); /** - * <p>Continues a message digest operation, by filling the buffer, processing + * 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.</p> - * + * 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. @@ -104,31 +96,31 @@ public interface IMessageDigest extends Cloneable void update(byte[] in, int offset, int length); /** - * <p>Completes the message digest by performing final operations such as - * padding and resetting the instance.</p> - * + * 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(); /** - * <p>Resets the current context of this instance clearing any eventually cached - * intermediary values.</p> + * Resets the current context of this instance clearing any eventually cached + * intermediary values. */ void reset(); /** - * <p>A basic test. Ensures that the digest of a pre-determined message is equal - * to a known pre-computed value.</p> - * - * @return <tt>true</tt> if the implementation passes a basic self-test. - * Returns <tt>false</tt> otherwise. + * 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. */ boolean selfTest(); /** - * <p>Returns a clone copy of this instance.</p> - * + * Returns a clone copy of this instance. + * * @return a clone copy of this instance. */ Object clone(); |
