/apt/src/main/java/org/passmanager/manager/KeyEncryption.java

https://github.com/daolena-a/PasswordManager · Java · 58 lines · 40 code · 11 blank · 7 comment · 0 complexity · f01fa6153eb931173f059e1e3bac22a0 MD5 · raw file

  1. package org.passmanager.manager;
  2. import java.io.*;
  3. import javax.crypto.*;
  4. import javax.crypto.spec.*;
  5. import java.security.Key;
  6. import javax.crypto.Cipher;
  7. import javax.crypto.spec.SecretKeySpec;
  8. /**
  9. * Created by IntelliJ IDEA.
  10. * User: adrien
  11. * Date: Nov 27, 2010
  12. * Time: 11:17:49 AM
  13. * To change this template use File | Settings | File Templates.
  14. */
  15. public final class KeyEncryption {
  16. String password;
  17. Key clef;
  18. public KeyEncryption(final StringBuilder pass) {
  19. password = pass.toString();
  20. try {
  21. clef = new SecretKeySpec(password.getBytes("UTF-8"), "Blowfish");
  22. } catch (Exception e) {
  23. e.printStackTrace();
  24. }
  25. }
  26. public byte[] crypter(final byte[] acrypt) {
  27. try {
  28. Cipher cipher = Cipher.getInstance("Blowfish");
  29. cipher.init(Cipher.ENCRYPT_MODE, clef);
  30. return cipher.doFinal(acrypt);
  31. } catch (Exception e) {
  32. return null;
  33. }
  34. }
  35. public byte[] decrypter(final byte[] aDecrypt) {
  36. try {
  37. Cipher cipher = Cipher.getInstance("Blowfish");
  38. cipher.init(Cipher.DECRYPT_MODE, clef);
  39. byte[] temp = cipher.doFinal(aDecrypt);
  40. return temp;
  41. } catch (Exception e) {
  42. System.out.println("Error during decryption");
  43. e.printStackTrace();
  44. return null;
  45. }
  46. }
  47. }