(ar)
| 82 | } |
| 83 | |
| 84 | function encode(ar) { |
| 85 | let b = ar[1] << 8, |
| 86 | c = ar[0] | b, |
| 87 | d = ar[2] << 16, |
| 88 | e = c | d, |
| 89 | result_array = [], |
| 90 | x6 = 6; |
| 91 | result_array.push(e & 63); |
| 92 | while (result_array.length < 4) { |
| 93 | let a = e >>> x6; |
| 94 | result_array.push(a & 63); |
| 95 | x6 += 6; |
| 96 | } |
| 97 | return result_array |
| 98 | } |
| 99 | |
| 100 | function get_init_array(encode_md5) { |
| 101 | let init_array = [] |