대략 짠 코드 실제 시험은 안해봤습니다 ^^ package pe.kr.realizm.blowfishcrypto; import java.io.FileInputStream; import java.io.FileOutputStream; import javax.crypto.Cipher; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; public class BlowfishCrypto { private final static byte[] RAW_KEY = { (byte) 0x01, (byte) 0x02, (byte) 0x03, (byte) 0x04, (byte) 0x05, (byte) 0x06, (byte) 0x07,..