summaryrefslogtreecommitdiff
path: root/gnu/javax/crypto/pad/BasePad.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/javax/crypto/pad/BasePad.java')
-rw-r--r--gnu/javax/crypto/pad/BasePad.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/javax/crypto/pad/BasePad.java b/gnu/javax/crypto/pad/BasePad.java
index adc2c9bbc..feeaca2f0 100644
--- a/gnu/javax/crypto/pad/BasePad.java
+++ b/gnu/javax/crypto/pad/BasePad.java
@@ -1,4 +1,4 @@
-/* BasePad.java --
+/* BasePad.java --
Copyright (C) 2001, 2002, 2003, 2006 Free Software Foundation, Inc.
This file is a part of GNU Classpath.
@@ -94,7 +94,7 @@ public abstract class BasePad
* an {@link UnsupportedOperationException}. Concrete padding algorithms MUST
* override this method if they wish to offer an initialisation method that
* allows for other than the padding block size parameter to be specified.
- *
+ *
* @param attributes a set of name-value pairs that describes the desired
* future behaviour of this instance.
* @exception IllegalStateException if the instance is already initialised.
@@ -113,7 +113,7 @@ public abstract class BasePad
/**
* A default implementation of a correctness test that exercises the padder
* implementation, using block sizes varying from 2 to 256 bytes.
- *
+ *
* @return <code>true</code> if the concrete implementation correctly unpads
* what it pads for all tested block sizes. Returns <code>false</code>
* if the test fails for any block size.
@@ -132,7 +132,7 @@ public abstract class BasePad
* <p>
* The code ensures that the implementation is capable of unpadding what it
* pads.
- *
+ *
* @param size the block size to test.
* @param buffer a work buffer. It is exposed as an argument for this method
* to reduce un-necessary object allocations.