/ru.advantum.csptm.jep.hub-artifact/proto-ndtp-v6/src/main/java/ru/advantum/csptm/jep/hub/granit/protocol/BlowFishEncryptor.java

https://bitbucket.org/vlarionov/csptm-release-test · Java · 31 lines · 19 code · 5 blank · 7 comment · 0 complexity · 778cfc3de12527a8fb06e31eda0de238 MD5 · raw file

  1. /*
  2. * To change this template, choose Tools | Templates
  3. * and open the template in the editor.
  4. */
  5. package ru.advantum.csptm.jep.hub.granit.protocol;
  6. /**
  7. * @author Kotin <kotin@advantum.ru>
  8. */
  9. import javax.crypto.Cipher;
  10. import javax.crypto.spec.SecretKeySpec;
  11. import java.util.Arrays;
  12. public class BlowFishEncryptor {
  13. public static void main(String[] args) throws Exception {
  14. blowfishEncrypt("plaintextfile", "ciphertextfile");
  15. }
  16. public static void blowfishEncrypt(String f1, String f2) throws Exception {
  17. String Key = "Something";
  18. byte[] KeyData = Key.getBytes();
  19. SecretKeySpec KS = new SecretKeySpec(KeyData, "Blowfish");
  20. Cipher cipher = Cipher.getInstance("Blowfish");
  21. cipher.init(Cipher.ENCRYPT_MODE, KS);
  22. byte[] doFinal = cipher.doFinal(f2.getBytes());
  23. String valueOf = Arrays.toString(doFinal);
  24. System.out.println(valueOf);
  25. }
  26. }