Skip to content

Commit 8d6b7fb

Browse files
committed
Remove trailing white spaces on all lines.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1831874 13f79535-47bb-0310-9956-ffa450edef68
1 parent 049487a commit 8d6b7fb

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/main/java/org/apache/commons/codec/digest/Crypt.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class Crypt {
4343
* A salt is generated for you using {@link ThreadLocalRandom}; for more secure salts consider using
4444
* {@link SecureRandom} to generate your own salts and calling {@link #crypt(byte[], String)}.
4545
* </p>
46-
*
46+
*
4747
* @param keyBytes
4848
* plaintext password
4949
* @return hash value
@@ -95,7 +95,7 @@ public static String crypt(final byte[] keyBytes, final String salt) {
9595
* A salt is generated for you using {@link ThreadLocalRandom}; for more secure salts consider using
9696
* {@link SecureRandom} to generate your own salts and calling {@link #crypt(String, String)}.
9797
* </p>
98-
*
98+
*
9999
* @see #crypt(String, String)
100100
* @param key
101101
* plaintext password

src/main/java/org/apache/commons/codec/digest/Md5Crypt.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public class Md5Crypt {
6767
* A salt is generated for you using {@link ThreadLocalRandom}; for more secure salts consider using
6868
* {@link SecureRandom} to generate your own salts and calling {@link #apr1Crypt(byte[], String)}.
6969
* </p>
70-
*
70+
*
7171
* @param keyBytes plaintext string to hash.
7272
* @return the hash value
7373
* @throws IllegalArgumentException when a {@link java.security.NoSuchAlgorithmException} is caught. *
@@ -169,7 +169,7 @@ public static String md5Crypt(final byte[] keyBytes) {
169169
* <p>
170170
* See {@link Crypt#crypt(String, String)} for details.
171171
* </p>
172-
*
172+
*
173173
* @param keyBytes
174174
* plaintext string to hash.
175175
* @param salt
@@ -191,7 +191,7 @@ public static String md5Crypt(final byte[] keyBytes, final String salt) {
191191
* <p>
192192
* See {@link Crypt#crypt(String, String)} or {@link #apr1Crypt(String, String)} for details.
193193
* </p>
194-
*
194+
*
195195
* @param keyBytes
196196
* plaintext string to hash.
197197
* @param salt

src/main/java/org/apache/commons/codec/digest/Sha2Crypt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class Sha2Crypt {
7979
* A salt is generated for you using {@link ThreadLocalRandom}; for more secure salts consider using
8080
* {@link SecureRandom} to generate your own salts and calling {@link #sha256Crypt(byte[], String)}.
8181
* </p>
82-
*
82+
*
8383
* @param keyBytes
8484
* plaintext to hash
8585
* @return complete hash value

src/main/java/org/apache/commons/codec/digest/UnixCrypt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public static String crypt(final byte[] original) {
190190
* <p>
191191
* Using unspecified characters as salt results incompatible hash values.
192192
* </p>
193-
*
193+
*
194194
* @param original
195195
* plaintext password
196196
* @param salt

0 commit comments

Comments
 (0)