File tree 1 file changed +20
-7
lines changed
src/test/java/org/apache/commons/codec/binary
1 file changed +20
-7
lines changed Original file line number Diff line number Diff line change 23
23
*
24
24
* @see <a href="http://www.ietf.org/rfc/rfc2045.txt">RFC 2045</a>
25
25
*/
26
- public class Base64TestData {
26
+ class Base64TestData {
27
27
28
28
/**
29
29
* A valid base 64 encoding that has a length that is a multiple of 3.
30
- * @see <a href="https://issues.apache.org/jira/browse/CODEC-101">Codec 101</a>
30
+ *
31
+ * @see <a href="https://issues.apache.org/jira/browse/CODEC-101">CODEC-101</a>
31
32
*/
32
- public static final String CODEC_101_INPUT_LENGTH_IS_MULTIPLE_OF_3 = "124" ;
33
+ static final String CODEC_101_INPUT_LENGTH_IS_MULTIPLE_OF_3 = "124" ;
33
34
34
- public static final String CODEC_98_NPE =
35
+ /**
36
+ * See CODEC-98.
37
+ *
38
+ * @see <a href="https://issues.apache.org/jira/browse/CODEC-98">CODEC-98</a>
39
+ */
40
+ static final String CODEC_98_NPE =
35
41
"YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM" ;
36
42
37
- public static final String CODEC_98_NPE_DECODED =
43
+ /**
44
+ * See CODEC-98.
45
+ *
46
+ * @see <a href="https://issues.apache.org/jira/browse/CODEC-98">CODEC-98</a>
47
+ */
48
+ static final String CODEC_98_NPE_DECODED =
38
49
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123" ;
39
50
40
- // OpenSSL doesn't include the final \n, but it would be annoying beyond belief
41
- // to further parameterize commons-codec to support this pointless variation.
51
+ /**
52
+ * OpenSSL doesn't include the final \n, but it would be annoying beyond belief
53
+ * to further parameterize commons-codec to support this pointless variation.
54
+ */
42
55
static final String ENCODED_64_CHARS_PER_LINE =
43
56
"9IPNKwUvdLiIAp6ctz12SiQmOGstWyYvSPeevufDhrzaws65voykKjbIj33YWTa9\n " +
44
57
"xA7c/FHypWclrZhQ7onfc3JE93BJ5fT4R9zAEdjbjy1hv4ZYNnET4WJeXMLJ/5p+\n " +
You can’t perform that action at this time.
0 commit comments