Este algorítimo de criptografia foi criado na década de 70, o prpósito era criar uma maior proteção dos dados. Fundamentalmente DES realiza somente duas operações sobre sua entrada, deslocamento de bits e substituição de bits. A chave controla exatamente como esse processo ocorre. Ao fazer estas operações repetidas vezes e de uma maneira não-linear, chega-se a um resultado que não pode ser revertido a entrada original sem o uso da chave.
O Exemplo abaixo gera um arquivo txt com a palavra chave e outro com a esta chave criptografada.
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.spec.AlgorithmParameterSpec;
import javax.crypto.Cipher;
import javax.crypto.CipherInputStream;
import javax.crypto.CipherOutputStream;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.IvParameterSpec;
public class Des
{
Cipher ecipher;
Cipher dcipher;
public static void main(String[] args) {
try {
SecretKey key = KeyGenerator.getInstance("DES").generateKey();
Des encrypter = new Des(key);
encrypter.encrypt(new FileInputStream("C:\\teste.txt"),
new FileOutputStream("C:\\1.txt"));
encrypter.decrypt(new FileInputStream("C:\\1.txt"),
new FileOutputStream("C:\\2.txt"));
System.out.println("teste");
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
Des(SecretKey key) {
byte[] iv = new byte[]{
(byte)0x8E, 0x12, 0x39, (byte)0x9C,
0x07, 0x72, 0x6F, 0x5A
};
AlgorithmParameterSpec paramSpec = new IvParameterSpec(iv);
try {
ecipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
dcipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
ecipher.init(Cipher.ENCRYPT_MODE, key, paramSpec);
dcipher.init(Cipher.DECRYPT_MODE, key, paramSpec);
} catch (java.security.InvalidAlgorithmParameterException e) {
} catch (javax.crypto.NoSuchPaddingException e) {
} catch (java.security.NoSuchAlgorithmException e) {
} catch (java.security.InvalidKeyException e) {
}
}
byte[] buf = new byte[1024];
public void encrypt(InputStream in, OutputStream out) {
try {
out = new CipherOutputStream(out, ecipher);
int numRead = 0;
while ((numRead = in.read(buf)) >= 0) {
out.write(buf, 0, numRead);
}
out.close();
} catch (java.io.IOException e) {
}
}
public void decrypt(InputStream in, OutputStream out) {
try {
in = new CipherInputStream(in, dcipher);
int numRead = 0;
while ((numRead = in.read(buf)) >= 0) {
out.write(buf, 0, numRead);
}
out.close();
} catch (java.io.IOException e) {
}
}
}
Espero ter ajudado
Nenhum comentário:
Postar um comentário