java 實現加密

來源:互聯網
上載者:User

標籤:

  加密有單向加密和雙向加密之分,也叫對稱式加密和非對稱式加密,雙向加密就是把資料加密後,還可以解密成原來的資料,但是需要使用到密鑰,而且必須是同一個密鑰.才可以解密成原來的資料.一開始我也不知道,密鑰是使用系統產生的密鑰,加密和解密分開操作的時候,加密過後,資料就解密不出來了.java實現加密的方法有DES,AES,等這些對稱式加密.單向加密從嚴格的意義來講不算加密.只是實現了一定的演算法,但是不可以逆轉.MD5加密就是一個單向非對稱式加密的技術.直接上代碼

 

package com.chen;import java.security.InvalidKeyException;import javax.crypto.BadPaddingException;import javax.crypto.Cipher;import javax.crypto.IllegalBlockSizeException;import javax.crypto.KeyGenerator;import javax.crypto.SecretKey;public class Chen {    // 金鑰產生器    private KeyGenerator kg = null;    // 密鑰    private SecretKey key = null;    // 進行加密和解密    private Cipher cip = null;    public Chen() throws Exception{        kg = KeyGenerator.getInstance("DES");        key = kg.generateKey();        cip = Cipher.getInstance("DES");    }    public byte[] encrypt(byte[] s) throws InvalidKeyException, IllegalBlockSizeException, BadPaddingException{        // 初始化        cip.init(Cipher.ENCRYPT_MODE, key);        // 加密        return cip.doFinal(s);    }    public byte[] decrypt(byte[] b) throws InvalidKeyException, IllegalBlockSizeException, BadPaddingException{        // 初始化        cip.init(Cipher.DECRYPT_MODE, key);        // 解密        return cip.doFinal(b);    }    public static void main(String[] args) {        try {            Chen chen = new Chen();            String str = "aba薩芬斯蒂芬";            // 加密            byte[] temp = chen.encrypt(str.getBytes());            // 解密            byte[] flag = chen.decrypt(temp);            System.out.println("明文 : " + str);            System.out.println("加密後的資料 : " + new String(temp));            System.out.println("解密後的資料 : " + new String(flag));        } catch (Exception e) {            e.printStackTrace();        }    }}

AES加密和解密的代碼

package crypt;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.SecretKey;public class AEScrypt {    //  key產生器    private KeyGenerator kg;    // 密鑰    private SecretKey key;    // 加密解密類    private Cipher cipher;    public AEScrypt() throws NoSuchAlgorithmException, NoSuchPaddingException{        kg = KeyGenerator.getInstance("AES");        System.out.println(kg.getProvider().getName());        key = kg.generateKey();        cipher = Cipher.getInstance("AES");        System.out.println(cipher.getProvider());    }    public byte[] encrypt(byte[] b) throws InvalidKeyException, IllegalBlockSizeException, BadPaddingException{        // 初始化        cipher.init(Cipher.ENCRYPT_MODE, key);        return cipher.doFinal(b);    }    public byte[] decrypt(byte[] b) throws InvalidKeyException, IllegalBlockSizeException, BadPaddingException{        // 初始化        cipher.init(Cipher.DECRYPT_MODE, key);        // 解密        return cipher.doFinal(b);            }    public static void main(String[] args) {        try {            AEScrypt aes = new AEScrypt();            String s = "safasf的送飯飯2342(&((*";            byte[] temp = aes.encrypt(s.getBytes());            byte[] flag = aes.decrypt(temp);            System.out.println("明文 : " + s);            System.out.println("加密 : " + new String(temp));            System.out.println("解密 : " + new String(flag));        } catch (Exception e) {                        e.printStackTrace();        }            }}

非對稱RSA,有連個密鑰,一個公開密鑰,一個私人密鑰,通過其中一個祕密金鑰加密,在通過其他一個密鑰解密

package crypt;import java.security.InvalidKeyException;  import java.security.KeyPair;  import java.security.KeyPairGenerator;  import java.security.NoSuchAlgorithmException;  import java.security.interfaces.RSAPrivateKey;  import java.security.interfaces.RSAPublicKey;    import javax.crypto.BadPaddingException;  import javax.crypto.Cipher;  import javax.crypto.IllegalBlockSizeException;  import javax.crypto.NoSuchPaddingException;    public class RSAcrypt {            /**      * 加密      * @param publicKey      * @param srcBytes      * @return      * @throws NoSuchAlgorithmException      * @throws NoSuchPaddingException      * @throws InvalidKeyException      * @throws IllegalBlockSizeException      * @throws BadPaddingException      */      protected byte[] encrypt(RSAPublicKey publicKey,byte[] srcBytes) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException{          if(publicKey!=null){              //Cipher負責完成加密或解密工作,基於RSA              Cipher cipher = Cipher.getInstance("RSA");              //根據公開金鑰,對Cipher對象進行初始化              cipher.init(Cipher.ENCRYPT_MODE, publicKey);              byte[] resultBytes = cipher.doFinal(srcBytes);              return resultBytes;          }          return null;      }            /**      * 解密       * @param privateKey      * @param srcBytes      * @return      * @throws NoSuchAlgorithmException      * @throws NoSuchPaddingException      * @throws InvalidKeyException      * @throws IllegalBlockSizeException      * @throws BadPaddingException      */      protected byte[] decrypt(RSAPrivateKey privateKey,byte[] srcBytes) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException{          if(privateKey!=null){              //Cipher負責完成加密或解密工作,基於RSA              Cipher cipher = Cipher.getInstance("RSA");              //根據公開金鑰,對Cipher對象進行初始化              cipher.init(Cipher.DECRYPT_MODE, privateKey);              byte[] resultBytes = cipher.doFinal(srcBytes);              return resultBytes;          }          return null;      }        /**      * @param args      * @throws NoSuchAlgorithmException       * @throws BadPaddingException       * @throws IllegalBlockSizeException       * @throws NoSuchPaddingException       * @throws InvalidKeyException       */      public static void main(String[] args) throws NoSuchAlgorithmException, InvalidKeyException, NoSuchPaddingException, IllegalBlockSizeException, BadPaddingException {          RSAcrypt rsa = new RSAcrypt();          String msg = "郭XX-精品相聲";          //KeyPairGenerator類用於產生公開金鑰和私密金鑰對,基於RSA演算法產生對象          KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance("RSA");          //初始化金鑰組產生器,密鑰大小為1024位          keyPairGen.initialize(1024);          //產生一個金鑰組,儲存在keyPair中          KeyPair keyPair = keyPairGen.generateKeyPair();          //得到私密金鑰          RSAPrivateKey privateKey = (RSAPrivateKey)keyPair.getPrivate();                       //得到公開金鑰          RSAPublicKey publicKey = (RSAPublicKey)keyPair.getPublic();                    //用公開金鑰加密          byte[] srcBytes = msg.getBytes();          byte[] resultBytes = rsa.encrypt(publicKey, srcBytes);                    //用私密金鑰解密          byte[] decBytes = rsa.decrypt(privateKey, resultBytes);                    System.out.println("明文是:" + msg);          System.out.println("加密後是:" + new String(resultBytes));          System.out.println("解密後是:" + new String(decBytes));      }    }  

 

java 實現加密

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.