zoukankan      html  css  js  c++  java
  • DES数据加密

    package test;
    
    import java.security.InvalidKeyException;  
    import java.security.NoSuchAlgorithmException;  
    import java.security.Security;  
      
    import javax.crypto.BadPaddingException;  
    import javax.crypto.Cipher;  
    import javax.crypto.IllegalBlockSizeException;  
    import javax.crypto.KeyGenerator;  
    import javax.crypto.NoSuchPaddingException;  
    import javax.crypto.SecretKey;  
    //  DES
    public class EncrypDES {  
          
        //KeyGenerator 提供对称密钥生成器的功能,支持各种算法  
        private KeyGenerator keygen;  
        //SecretKey 负责保存对称密钥  
        private SecretKey deskey;  
        //Cipher负责完成加密或解密工作  
        private Cipher c;  
        //该字节数组负责保存加密的结果  
        private byte[] cipherByte;  
          
        public EncrypDES() throws NoSuchAlgorithmException, NoSuchPaddingException{  
            Security.addProvider(new com.sun.crypto.provider.SunJCE());  
            //实例化支持DES算法的密钥生成器(算法名称命名需按规定,否则抛出异常)  
            keygen = KeyGenerator.getInstance("DES");  
            //生成密钥  
            deskey = keygen.generateKey();  
            //生成Cipher对象,指定其支持的DES算法  
            c = Cipher.getInstance("DES");  
        }  
          
        /** 
         * 对字符串加密 
         *  
         * @param str 
         * @return 
         * @throws InvalidKeyException 
         * @throws IllegalBlockSizeException 
         * @throws BadPaddingException 
         */  
        public byte[] Encrytor(String str) throws InvalidKeyException,  
                IllegalBlockSizeException, BadPaddingException {  
            // 根据密钥,对Cipher对象进行初始化,ENCRYPT_MODE表示加密模式  
            c.init(Cipher.ENCRYPT_MODE, deskey);  
            byte[] src = str.getBytes();  
            // 加密,结果保存进cipherByte  
            cipherByte = c.doFinal(src);  
            return cipherByte;  
        }  
      
        /** 
         * 对字符串解密 
         *  
         * @param buff 
         * @return 
         * @throws InvalidKeyException 
         * @throws IllegalBlockSizeException 
         * @throws BadPaddingException 
         */  
        public byte[] Decryptor(byte[] buff) throws InvalidKeyException,  
                IllegalBlockSizeException, BadPaddingException {  
             // 根据密钥,对Cipher对象进行初始化,DECRYPT_MODE表示加密模式  
            c.init(Cipher.DECRYPT_MODE, deskey);  
            cipherByte = c.doFinal(buff);  
            return cipherByte;  
        }  
      
        public static void main(String[] args) throws Exception {  
            EncrypDES de1 = new EncrypDES();  
            String msg ="郭XX-搞笑相声全集";  
            byte[] encontent = de1.Encrytor(msg);  
            byte[] decontent = de1.Decryptor(encontent);  
            System.out.println("明文是:" + msg);  
            System.out.println("加密后:" + new String(encontent));  
            System.out.println("解密后:" + new String(decontent));  
        }  
      
    }  
    

      

  • 相关阅读:
    # 泰语字符串字符分割 --- UTF-8编码格式
    dos命令(Cacls和Icacls) -- 显示或者修改文件的访问控制表
    win8上cmder文字重叠问题
    C++虚函数的新用法
    Tomcat 7.0 servlet @WebServlet
    Win7获取管理权限修改Host文件以其他权限问题
    如何为网页添加小宠物挂件:小老鼠、金鱼等
    怎么解决tomcat占用8080端口问题图文教程
    Stream流
    函数式接口
  • 原文地址:https://www.cnblogs.com/Nbge/p/2789376.html
Copyright © 2011-2022 走看看