/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
- /*
- * Copyright 2009-2011 Antonio MuĂąoz <antoniogmc (AT) gmail.com>
- * Distributed under the terms of the GNU General Public License v3
- */
- package com.agmc.crypto.test;
- import java.security.SecureRandom;
- import java.util.Date;
- import javax.crypto.Cipher;
- import javax.crypto.KeyGenerator;
- import javax.crypto.SecretKey;
- import com.agmc.crypto.provider.MyToolkit;
- public class PruebaBlowfish extends PruebaJCE {
- public static void main(String[] args) {
- byte[] cifrado1 = null;
- byte[] cifrado2 = null;
- byte[] mensaje = "Hola esto es una prueba de mi algoritmo Blowfish... parece ser que es muy lento".getBytes();
- try {
- KeyGenerator kgen = KeyGenerator.getInstance("Blowfish", "MyJCE");
- kgen.init(new SecureRandom());
- SecretKey sk = kgen.generateKey();
- Date inic = new Date();
- Cipher c1 = Cipher.getInstance("Blowfish/ECB/PKCS5Padding", "MyJCE");
- c1.init(Cipher.ENCRYPT_MODE, sk);
- Cipher c2 = Cipher.getInstance("Blowfish/ECB/PKCS5Padding", "MyJCE");
- c2.init(Cipher.DECRYPT_MODE, sk);
- //for(int i = 0; i < 100; i++) {
- cifrado1 = c1.doFinal(mensaje, 0, mensaje.length);
- cifrado2 = c2.doFinal(cifrado1, 0, cifrado1.length);
- //}
- System.out.println("\nEl mio: " + (new Date().getTime() - inic.getTime()));
- System.out.println("\nlongitud = " + mensaje.length + "\tmensaje = " + new String(mensaje, 0, mensaje.length));
- System.out.println("longitud = " + cifrado1.length + "\tcifrado = " + MyToolkit.toHexString(cifrado1));
- System.out.println("longitud = " + cifrado2.length + "\tdescifrado = " + new String(cifrado2, 0, cifrado2.length));
- }
- catch(Exception e) {
- e.printStackTrace();
- }
- try {
- KeyGenerator kgen = KeyGenerator.getInstance("Blowfish", "BC");
- kgen.init(new SecureRandom());
- SecretKey sk = kgen.generateKey();
- Date inic = new Date();
- Cipher c1 = Cipher.getInstance("Blowfish/ECB/PKCS5Padding", "BC");
- c1.init(Cipher.ENCRYPT_MODE, sk);
- Cipher c2 = Cipher.getInstance("Blowfish/ECB/PKCS5Padding", "BC");
- c2.init(Cipher.DECRYPT_MODE, sk);
- //for(int i = 0; i < 100; i++) {
- cifrado1 = c1.doFinal(mensaje, 0, mensaje.length);
- cifrado2 = c2.doFinal(cifrado1, 0, cifrado1.length);
- //}
- System.out.println("\nEl suyo: " + (new Date().getTime() - inic.getTime()));
- System.out.println("\nlongitud = " + mensaje.length + "\tmensaje = " + new String(mensaje, 0, mensaje.length));
- System.out.println("longitud = " + cifrado1.length + "\tcifrado = " + MyToolkit.toHexString(cifrado1));
- System.out.println("longitud = " + cifrado2.length + "\tdescifrado = " + new String(cifrado2, 0, cifrado2.length));
- }
- catch(Exception e) {
- e.printStackTrace();
- }
- }
- }