jdk/src/java.base/share/classes/sun/misc/BASE64Encoder.java
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    59     protected int bytesPerLine() {
    59     protected int bytesPerLine() {
    60         return (57);
    60         return (57);
    61     }
    61     }
    62 
    62 
    63     /** This array maps the characters to their 6 bit values */
    63     /** This array maps the characters to their 6 bit values */
    64     private final static char pem_array[] = {
    64     private static final char pem_array[] = {
    65         //       0   1   2   3   4   5   6   7
    65         //       0   1   2   3   4   5   6   7
    66                 'A','B','C','D','E','F','G','H', // 0
    66                 'A','B','C','D','E','F','G','H', // 0
    67                 'I','J','K','L','M','N','O','P', // 1
    67                 'I','J','K','L','M','N','O','P', // 1
    68                 'Q','R','S','T','U','V','W','X', // 2
    68                 'Q','R','S','T','U','V','W','X', // 2
    69                 'Y','Z','a','b','c','d','e','f', // 3
    69                 'Y','Z','a','b','c','d','e','f', // 3