/acid/src/main/java/net/rizon/acid/util/Blowfish.java

https://gitlab.com/DanielOaks/acid · Java · 295 lines · 216 code · 33 blank · 46 comment · 26 complexity · ddf3cfd9cfeb212d632f2e3ababa6850 MD5 · raw file

  1. package net.rizon.acid.util;
  2. /**
  3. * Blowfish.java version 1.00.00
  4. *
  5. * Code Written by k2r (k2r.contact@gmail.com)
  6. *
  7. * Tks to Mouser for his precious help.
  8. * Tks to Murx for correct Padding and Long key.
  9. *
  10. * Use this code is very simple :
  11. *
  12. * Use "Encrypt" with the text to encrypt
  13. * -> The function will encrypt and return the text with +OK at the biginning"
  14. *
  15. * Use "Decrypt" with the text to decrypt
  16. * --> The text must include the +OK or mcps at the front"
  17. *
  18. * There are a good exemple in "Main" function
  19. *
  20. * To Use Key > 16 char, you must update two jar files in your jre or jdk.
  21. * Java Cryptography Extension (JCE)
  22. * Unlimited Strength Jurisdiction Policy Files 1.4.2
  23. * http://java.sun.com/j2se/1.4.2/download.html#docs
  24. * Update the two files in jre\lib\security
  25. * -> local_policy.jar
  26. * -> US_export_policy.jar
  27. *
  28. */
  29. import java.io.UnsupportedEncodingException;
  30. import java.security.InvalidKeyException;
  31. import javax.crypto.Cipher;
  32. import javax.crypto.spec.SecretKeySpec;
  33. import net.rizon.acid.core.Logger;
  34. public class Blowfish
  35. {
  36. private static final Logger log = Logger.getLogger(Blowfish.class.getName());
  37. /*
  38. * Constructor of Blowfish class Key param
  39. */
  40. public Blowfish(String key)
  41. {
  42. skeySpec = new SecretKeySpec(key.getBytes(), "Blowfish");
  43. // Preparing Blowfish mode
  44. try
  45. {
  46. ecipher = Cipher.getInstance("Blowfish/ECB/NoPadding");
  47. }
  48. catch (Exception e)
  49. {
  50. log.log(e);
  51. }
  52. }
  53. /* Encrypt function */
  54. public String Encrypt(String tocrypt)
  55. {
  56. // Mode cypher in Encrypt mode
  57. try
  58. {
  59. ecipher.init(Cipher.ENCRYPT_MODE, skeySpec);
  60. }
  61. catch (InvalidKeyException e)
  62. {
  63. log.log(e);
  64. }
  65. String REncrypt = "";
  66. // Paddind the String
  67. byte[] BEncrypt = tocrypt.getBytes();
  68. int Taille = BEncrypt.length;
  69. int Limit = 8 - (BEncrypt.length % 8);
  70. byte[] buff = new byte[Taille + Limit];
  71. for (int i = 0; i < Taille; i++)
  72. buff[i] = BEncrypt[i];
  73. for (int i = Taille; i < Taille + Limit; i++)
  74. buff[i] = 0x0;
  75. try
  76. {
  77. // Encrypt the padding string
  78. byte[] encrypted = ecipher.doFinal(buff);
  79. // B64 ENCRYPTION (mircryption needed)
  80. REncrypt = bytetoB64(encrypted);
  81. }
  82. catch (Exception e)
  83. {
  84. log.log(e);
  85. }
  86. REncrypt = Begin.concat(REncrypt);
  87. return REncrypt;
  88. }
  89. /* Decrypt function */
  90. public String Decrypt(String encrypt) throws UnsupportedEncodingException
  91. {
  92. if (encrypt.startsWith("+OK "))
  93. {
  94. encrypt = encrypt.substring(4, encrypt.length());
  95. }
  96. if (encrypt.startsWith("mcps "))
  97. {
  98. encrypt = encrypt.substring(5, encrypt.length());
  99. }
  100. // B64 DECRYPTION (mircryption needed)
  101. byte[] Again = B64tobyte(encrypt);
  102. byte[] decrypted = null;
  103. try
  104. {
  105. // Mode cypher in Decrypt mode
  106. ecipher.init(Cipher.DECRYPT_MODE, skeySpec);
  107. decrypted = ecipher.doFinal(Again);
  108. // Recup exact length
  109. int leng = 0;
  110. while (decrypted[leng] != 0x0)
  111. {
  112. leng++;
  113. }
  114. byte[] Final = new byte[leng];
  115. // Format & Limit the Result String
  116. int i = 0;
  117. while (decrypted[i] != 0x0)
  118. {
  119. Final[i] = decrypted[i];
  120. i++;
  121. }
  122. // Force again the encoding result string
  123. return new String(Final, "8859_1");
  124. }
  125. catch (Exception e)
  126. {
  127. // return e.getMessage();
  128. // Exception, not necessary padding, return directly
  129. // The decypted string
  130. return new String(decrypted, "8859_1");
  131. }
  132. }
  133. public static byte[] B64tobyte(String ec)
  134. {
  135. try
  136. {
  137. String dc = "";
  138. int k = -1;
  139. while (k < (ec.length() - 1))
  140. {
  141. int right = 0;
  142. int left = 0;
  143. int v = 0;
  144. int w = 0;
  145. int z = 0;
  146. for (int i = 0; i < 6; i++)
  147. {
  148. k++;
  149. v = B64.indexOf(ec.charAt(k));
  150. right |= v << (i * 6);
  151. }
  152. for (int i = 0; i < 6; i++)
  153. {
  154. k++;
  155. v = B64.indexOf(ec.charAt(k));
  156. left |= v << (i * 6);
  157. }
  158. for (int i = 0; i < 4; i++)
  159. {
  160. w = ((left & (0xFF << ((3 - i) * 8))));
  161. z = w >> ((3 - i) * 8);
  162. if (z < 0)
  163. {
  164. z = z + 256;
  165. }
  166. dc += (char) z;
  167. }
  168. for (int i = 0; i < 4; i++)
  169. {
  170. w = ((right & (0xFF << ((3 - i) * 8))));
  171. z = w >> ((3 - i) * 8);
  172. if (z < 0)
  173. {
  174. z = z + 256;
  175. }
  176. dc += (char) z;
  177. }
  178. }
  179. byte[] Result = new byte[1024];
  180. try
  181. {
  182. // Force the encoding result string
  183. Result = dc.getBytes("8859_1");
  184. }
  185. catch (UnsupportedEncodingException e)
  186. {
  187. log.log(e);
  188. }
  189. return Result;
  190. }
  191. catch (StringIndexOutOfBoundsException e)
  192. {
  193. throw new IllegalArgumentException("ec is not valid base64?", e);
  194. }
  195. }
  196. public static String bytetoB64(byte[] ec)
  197. {
  198. String dc = "";
  199. int left = 0;
  200. int right = 0;
  201. int k = -1;
  202. int v;
  203. while (k < (ec.length - 1))
  204. {
  205. k++;
  206. v = ec[k];
  207. if (v < 0)
  208. v += 256;
  209. left = v << 24;
  210. k++;
  211. v = ec[k];
  212. if (v < 0)
  213. v += 256;
  214. left += v << 16;
  215. k++;
  216. v = ec[k];
  217. if (v < 0)
  218. v += 256;
  219. left += v << 8;
  220. k++;
  221. v = ec[k];
  222. if (v < 0)
  223. v += 256;
  224. left += v;
  225. k++;
  226. v = ec[k];
  227. if (v < 0)
  228. v += 256;
  229. right = v << 24;
  230. k++;
  231. v = ec[k];
  232. if (v < 0)
  233. v += 256;
  234. right += v << 16;
  235. k++;
  236. v = ec[k];
  237. if (v < 0)
  238. v += 256;
  239. right += v << 8;
  240. k++;
  241. v = ec[k];
  242. if (v < 0)
  243. v += 256;
  244. right += v;
  245. for (int i = 0; i < 6; i++)
  246. {
  247. dc += B64.charAt(right & 0x3F);
  248. right = right >> 6;
  249. }
  250. for (int i = 0; i < 6; i++)
  251. {
  252. dc += B64.charAt(left & 0x3F);
  253. left = left >> 6;
  254. }
  255. }
  256. return dc;
  257. }
  258. private static String Begin = "+OK ";
  259. private static String B64 = "./0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
  260. private Cipher ecipher;
  261. private SecretKeySpec skeySpec;
  262. }