예제 #1
0
파일: Crypter.java 프로젝트: rahnas/pagavcs
 private static byte[] base64Decode(String property) throws IOException {
   return Base64Decoder.decodeBase64(property);
 }
예제 #2
0
파일: Crypter.java 프로젝트: rahnas/pagavcs
 private static String base64Encode(byte[] bytes) {
   return Base64Decoder.encodeBase64(bytes);
 }