/src/taska/commons/security/CipherUtil.java

https://bitbucket.org/tas_taska/tas-ka-commons · Java · 50 lines · 26 code · 4 blank · 20 comment · 0 complexity · 022910a639c944c93073126b39a0a33b MD5 · raw file

  1. /*
  2. * Copyright (C) 2011 Tasnai Amphol (tas at taska.com.au)
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. package taska.commons.security;
  18. import javax.crypto.Cipher;
  19. import javax.crypto.spec.SecretKeySpec;
  20. /**
  21. *
  22. * @author Tasnai Amphol (tas at taska.com.au)
  23. */
  24. public class CipherUtil {
  25. public static byte[] encryptBlowfish(String key, String text) {
  26. SecretKeySpec k = new SecretKeySpec(key.getBytes(), "Blowfish");
  27. try {
  28. Cipher cipher = Cipher.getInstance("Blowfish");
  29. cipher.init(Cipher.ENCRYPT_MODE, k);
  30. return cipher.doFinal(text.getBytes());
  31. } catch (Exception e) {
  32. throw new RuntimeException(e);
  33. }
  34. }
  35. public static String decryptBlowfish(String key, byte[] byteArray) {
  36. SecretKeySpec k = new SecretKeySpec(key.getBytes(), "Blowfish");
  37. try {
  38. Cipher cipher = Cipher.getInstance("Blowfish");
  39. cipher.init(Cipher.DECRYPT_MODE, k);
  40. byte[] decrypted = cipher.doFinal(byteArray);
  41. return new String(decrypted);
  42. } catch (Exception e) {
  43. throw new RuntimeException(e);
  44. }
  45. }
  46. }