This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git

commit 2d08d491e1c99d59d33e05a7b8e97ded62d0ae91
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun May 26 14:48:25 2024 -0400

    Javadoc
---
 src/main/java/org/apache/commons/net/util/Base64.java | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/net/util/Base64.java 
b/src/main/java/org/apache/commons/net/util/Base64.java
index fd89fc70..d997d50c 100644
--- a/src/main/java/org/apache/commons/net/util/Base64.java
+++ b/src/main/java/org/apache/commons/net/util/Base64.java
@@ -225,7 +225,10 @@ public class Base64 {
     }
 
     /**
-     * Encodes binary data using the base64 algorithm and chunks the encoded 
output into 76 character blocks
+     * Encodes binary data using the base64 algorithm and chunks the encoded 
output into 76 character blocks separated by CR-LF.
+     * <p>
+     * The return value ends in a CR-LF.
+     * </p>
      *
      * @param binaryData binary data to encode
      * @return Base64 characters chunked in 76 character blocks
@@ -235,7 +238,10 @@ public class Base64 {
     }
 
     /**
-     * Encodes binary data using the base64 algorithm into 76 character blocks 
separated by CRLF.
+     * Encodes binary data using the base64 algorithm into 76 character blocks 
separated by CR-LF.
+     * <p>
+     * The return value ends in a CR-LF.
+     * </p>
      * <p>
      * For a non-chunking version, see {@link 
#encodeBase64StringUnChunked(byte[])}.
      * </p>

Reply via email to