/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
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package ru.advantum.csptm.jep.hub.granit.protocol;
- /**
- * @author Kotin <kotin@advantum.ru>
- */
- import javax.crypto.Cipher;
- import javax.crypto.spec.SecretKeySpec;
- import java.util.Arrays;
- public class BlowFishEncryptor {
- public static void main(String[] args) throws Exception {
- blowfishEncrypt("plaintextfile", "ciphertextfile");
- }
- public static void blowfishEncrypt(String f1, String f2) throws Exception {
- String Key = "Something";
- byte[] KeyData = Key.getBytes();
- SecretKeySpec KS = new SecretKeySpec(KeyData, "Blowfish");
- Cipher cipher = Cipher.getInstance("Blowfish");
- cipher.init(Cipher.ENCRYPT_MODE, KS);
- byte[] doFinal = cipher.doFinal(f2.getBytes());
- String valueOf = Arrays.toString(doFinal);
- System.out.println(valueOf);
- }
- }