/[classpath]/classpath/javax/crypto/Mac.java
ViewVC logotype

Diff of /classpath/javax/crypto/Mac.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3.2.2 by gnu_andrew, Sat Jan 15 17:02:16 2005 UTC revision 1.3.2.3 by gnu_andrew, Sun Jan 16 02:14:49 2005 UTC
# Line 290  public class Mac implements Cloneable Line 290  public class Mac implements Cloneable
290     *     *
291     * @return The MAC length.     * @return The MAC length.
292     */     */
293    public int getMacLength()    public final int getMacLength()
294    {    {
295      return macSpi.engineGetMacLength();      return macSpi.engineGetMacLength();
296    }    }
# Line 404  public class Mac implements Cloneable Line 404  public class Mac implements Cloneable
404     * @throws java.lang.CloneNotSupportedException If the underlying     * @throws java.lang.CloneNotSupportedException If the underlying
405     *         implementation is not cloneable.     *         implementation is not cloneable.
406     */     */
407    public Object clone() throws CloneNotSupportedException    public final Object clone() throws CloneNotSupportedException
408    {    {
409      Mac result = new Mac((MacSpi) macSpi.clone(), provider, algorithm);      Mac result = new Mac((MacSpi) macSpi.clone(), provider, algorithm);
410      result.virgin = virgin;      result.virgin = virgin;

Legend:
Removed from v.1.3.2.2  
changed lines
  Added in v.1.3.2.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26