We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9727285 commit 77fa03cCopy full SHA for 77fa03c
1 file changed
src/main/java/org/apache/commons/codec/binary/Base16.java
@@ -26,6 +26,15 @@
26
* This class is thread-safe.
27
* </p>
28
*
29
+ * This implementation strictly follows RFC 4648, and as such unlike
30
+ * the {@link Base32} and {@link Base64} implementations,
31
+ * it does not ignore invalid alphabet characters or whitespace,
32
+ * neither does it offer chunking or padding characters.
33
+ *
34
+ * The only additional feature above those specified in RFC 4648
35
+ * is support for working with a lower-case alphabet in addition
36
+ * to the default upper-case alphabet.
37
38
* @see <a href="https://tools.ietf.org/html/rfc4648#section-8">RFC 4648 - 8. Base 16 Encoding</a>
39
40
* @since 1.15
0 commit comments