Пример #1
0
 private static byte[] base64Decode(String property) throws IOException {
   return Base64Decoder.decodeBase64(property);
 }
Пример #2
0
 private static String base64Encode(byte[] bytes) {
   return Base64Decoder.encodeBase64(bytes);
 }