You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/org/apache/commons/codec/binary/Base64.java
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -112,34 +112,35 @@ public Builder setUrlSafe(final boolean urlSafe) {
112
112
privatestaticfinalintDECODING_TABLE_LENGTH = 256;
113
113
114
114
/**
115
-
* This array is a lookup table that translates 6-bit positive integer index values into their "Base64 Alphabet"
116
-
* equivalents as specified in Table 1 of RFC 2045.
115
+
* This array is a lookup table that translates 6-bit positive integer index values into their "Base64 Alphabet" equivalents as specified in Table 1 of RFC
116
+
* 2045.
117
117
* <p>
118
-
* Thanks to "commons" project in ws.apache.org for this code.
* This is a copy of the STANDARD_ENCODE_TABLE above, but with + and /
132
-
* changed to - and _ to make the encoded Base64 results more URL-SAFE.
133
-
* This table is only used when the Base64's mode is set to URL-SAFE.
132
+
* This is a copy of the STANDARD_ENCODE_TABLE above, but with + and / changed to - and _ to make the encoded Base64 results more URL-SAFE. This table is
133
+
* only used when the Base64's mode is set to URL-SAFE.
0 commit comments