Java实现DES加密解密代码
发布时间:2020-05-24 15:26:11 所属栏目:Java 来源:互联网
导读:Java实现DES加密解密代码
|
下面是脚本之家 jb51.cc 通过网络收集整理的代码片段。 脚本之家小编现在分享给大家,也给大家做个参考。 import java.io.IOException;
import java.io.Serializable;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.KeyGenerator;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.SealedObject;
import javax.crypto.SecretKey;
public class EncryptDecryptObjectWithDES {
private static Cipher ecipher;
private static Cipher dcipher;
private static SecretKey key;
public static void main(String[] args) {
try {
// generate secret key using DES algorithm
key = KeyGenerator.getInstance("DES").generateKey();
ecipher = Cipher.getInstance("DES");
dcipher = Cipher.getInstance("DES");
// initialize the ciphers with the given key
ecipher.init(Cipher.ENCRYPT_MODE,key);
dcipher.init(Cipher.DECRYPT_MODE,key);
// create a sealed object
SealedObject sealed = new SealedObject(new SecretObject("My secret message"),ecipher);
// get the algorithm with the object has been sealed
String algorithm = sealed.getAlgorithm();
System.out.println("Algorithm " + algorithm);
// unseal (decrypt) the object
SecretObject o = (SecretObject) sealed.getObject(dcipher);
System.out.println("Original Object: " + o);
}
catch (NoSuchAlgorithmException e) {
System.out.println("No Such Algorithm:" + e.getMessage());
return;
}
catch (NoSuchPaddingException e) {
System.out.println("No Such Padding:" + e.getMessage());
return;
}
catch (BadPaddingException e) {
System.out.println("Bad Padding:" + e.getMessage());
return;
}
catch (InvalidKeyException e) {
System.out.println("Invalid Key:" + e.getMessage());
return;
}
catch (IllegalBlockSizeException e) {
System.out.println("Illegal Block:" + e.getMessage());
return;
}
catch (ClassNotFoundException e) {
System.out.println("Class Not Found:" + e.getMessage());
return;
}
catch (IOException e) {
System.out.println("I/O Error:" + e.getMessage());
return;
}
}
public static class SecretObject implements Serializable {
private static final long serialVersionUID = -1335351770906357695L;
private final String message;
public SecretObject(String message) {
this.message = message;
}
@Override
public String toString() {
return "SecretObject [message=" + message + "]";
}
}
}
Algorithm DES Original Object: SecretObject [message=My secret message] 以上是脚本之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。 如果觉得脚本之家网站内容还不错,欢迎将脚本之家网站推荐给程序员好友。 (编辑:安卓应用网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
