diff options
Diffstat (limited to 'libjava/classpath/gnu/java/security/sig/ISignature.java')
-rw-r--r-- | libjava/classpath/gnu/java/security/sig/ISignature.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libjava/classpath/gnu/java/security/sig/ISignature.java b/libjava/classpath/gnu/java/security/sig/ISignature.java index ff25f29d9fa..be98f9a9b00 100644 --- a/libjava/classpath/gnu/java/security/sig/ISignature.java +++ b/libjava/classpath/gnu/java/security/sig/ISignature.java @@ -1,4 +1,4 @@ -/* ISignature.java -- +/* ISignature.java -- Copyright (C) 2001, 2002, 2003, 2006 Free Software Foundation, Inc. This file is a part of GNU Classpath. @@ -75,14 +75,14 @@ public interface ISignature /** * Returns the canonical name of this signature scheme. - * + * * @return the canonical name of this instance. */ String name(); /** * Initialises this instance for signature verification. - * + * * @param attributes the attributes to use for setting up this instance. * @throws IllegalArgumentException if the designated public key is not * appropriate for this signature scheme. @@ -93,7 +93,7 @@ public interface ISignature /** * Initialises this instance for signature generation. - * + * * @param attributes the attributes to use for setting up this instance. * @throws IllegalArgumentException if the designated private key is not * appropriate for this signature scheme. @@ -104,7 +104,7 @@ public interface ISignature /** * Digests one byte of a message for signing or verification purposes. - * + * * @param b the message byte to digest. * @throws IllegalStateException if this instance was not setup for signature * generation/verification. @@ -114,7 +114,7 @@ public interface ISignature /** * Digests a sequence of bytes from a message for signing or verification * purposes. - * + * * @param buffer the byte sequence to consider. * @param offset the byte poisition in <code>buffer</code> of the first byte * to consider. @@ -129,7 +129,7 @@ public interface ISignature /** * Terminates a signature generation phase by digesting and processing the * context of the underlying message digest algorithm instance. - * + * * @return a {@link Object} representing the native output of the signature * scheme implementation. * @throws IllegalStateException if this instance was not setup for signature @@ -140,7 +140,7 @@ public interface ISignature /** * Terminates a signature verification phase by digesting and processing the * context of the underlying message digest algorithm instance. - * + * * @param signature a native signature object previously generated by an * invocation of the <code>sign()</code> method. * @return <code>true</code> iff the outpout of the verification phase @@ -153,7 +153,7 @@ public interface ISignature /** * Returns a clone copy of this instance. - * + * * @return a clone copy of this instance. */ Object clone(); |