/myjce/test/com/agmc/crypto/test/PruebaBlowfish.java

https://bitbucket.org/tonivade/personal · Java · 82 lines · 52 code · 22 blank · 8 comment · 0 complexity · 2fb65565012c6940c8b327548386ad5a MD5 · raw file

  1. /*
  2. * Copyright 2009-2011 Antonio MuĂąoz <antoniogmc (AT) gmail.com>
  3. * Distributed under the terms of the GNU General Public License v3
  4. */
  5. package com.agmc.crypto.test;
  6. import java.security.SecureRandom;
  7. import java.util.Date;
  8. import javax.crypto.Cipher;
  9. import javax.crypto.KeyGenerator;
  10. import javax.crypto.SecretKey;
  11. import com.agmc.crypto.provider.MyToolkit;
  12. public class PruebaBlowfish extends PruebaJCE {
  13. public static void main(String[] args) {
  14. byte[] cifrado1 = null;
  15. byte[] cifrado2 = null;
  16. byte[] mensaje = "Hola esto es una prueba de mi algoritmo Blowfish... parece ser que es muy lento".getBytes();
  17. try {
  18. KeyGenerator kgen = KeyGenerator.getInstance("Blowfish", "MyJCE");
  19. kgen.init(new SecureRandom());
  20. SecretKey sk = kgen.generateKey();
  21. Date inic = new Date();
  22. Cipher c1 = Cipher.getInstance("Blowfish/ECB/PKCS5Padding", "MyJCE");
  23. c1.init(Cipher.ENCRYPT_MODE, sk);
  24. Cipher c2 = Cipher.getInstance("Blowfish/ECB/PKCS5Padding", "MyJCE");
  25. c2.init(Cipher.DECRYPT_MODE, sk);
  26. //for(int i = 0; i < 100; i++) {
  27. cifrado1 = c1.doFinal(mensaje, 0, mensaje.length);
  28. cifrado2 = c2.doFinal(cifrado1, 0, cifrado1.length);
  29. //}
  30. System.out.println("\nEl mio: " + (new Date().getTime() - inic.getTime()));
  31. System.out.println("\nlongitud = " + mensaje.length + "\tmensaje = " + new String(mensaje, 0, mensaje.length));
  32. System.out.println("longitud = " + cifrado1.length + "\tcifrado = " + MyToolkit.toHexString(cifrado1));
  33. System.out.println("longitud = " + cifrado2.length + "\tdescifrado = " + new String(cifrado2, 0, cifrado2.length));
  34. }
  35. catch(Exception e) {
  36. e.printStackTrace();
  37. }
  38. try {
  39. KeyGenerator kgen = KeyGenerator.getInstance("Blowfish", "BC");
  40. kgen.init(new SecureRandom());
  41. SecretKey sk = kgen.generateKey();
  42. Date inic = new Date();
  43. Cipher c1 = Cipher.getInstance("Blowfish/ECB/PKCS5Padding", "BC");
  44. c1.init(Cipher.ENCRYPT_MODE, sk);
  45. Cipher c2 = Cipher.getInstance("Blowfish/ECB/PKCS5Padding", "BC");
  46. c2.init(Cipher.DECRYPT_MODE, sk);
  47. //for(int i = 0; i < 100; i++) {
  48. cifrado1 = c1.doFinal(mensaje, 0, mensaje.length);
  49. cifrado2 = c2.doFinal(cifrado1, 0, cifrado1.length);
  50. //}
  51. System.out.println("\nEl suyo: " + (new Date().getTime() - inic.getTime()));
  52. System.out.println("\nlongitud = " + mensaje.length + "\tmensaje = " + new String(mensaje, 0, mensaje.length));
  53. System.out.println("longitud = " + cifrado1.length + "\tcifrado = " + MyToolkit.toHexString(cifrado1));
  54. System.out.println("longitud = " + cifrado2.length + "\tdescifrado = " + new String(cifrado2, 0, cifrado2.length));
  55. }
  56. catch(Exception e) {
  57. e.printStackTrace();
  58. }
  59. }
  60. }