DES、AES、RSA加密

加密算法

  1. 單向加密: MD5 SHA
  2. Base64加密
  3. 對稱加密: AES (Advanced Encription Standard) \ DES (Data Encryption Standard)
  4. 非對稱加密:RSA

MD5 消息摘要算法5

MD5 (Message-Digest Algorithm 5)消息摘要算法5 是一種單向的加密算法,是不可逆的一種加密方式。

1. MD5加密的特點

  • 壓縮性:任意長度的數(shù)據(jù),計算出來的MD5值都是固定的
  • 容易計算: 從原數(shù)據(jù)計算出MD5值是非常方便的
  • 抗修改性: 對原數(shù)據(jù)做任何改動 哪怕之修改1個字節(jié),MD5值都有很大區(qū)別
  • 強抗碰撞:已知原數(shù)據(jù)和其MD5值,想找到一個具有相同MD5值的數(shù)據(jù)(偽造數(shù)據(jù))是非常困難的。

2. 應用場景:

  • 文件一致性較驗
  • 數(shù)組簽名
  • 安全訪問認證
MD5 加密使用實例
 /**
     * MessageDigest 類為應用程序提供信息摘要算法的功能,如 MD5 或 SHA 算法,信息摘要是安全的單項哈西函數(shù),它接收任意大小的數(shù)據(jù),并輸出固定長度的哈希值
     * @param str
     * @return
     */
    public static String MD5Encode(String str){
        MessageDigest algorithm ;

        String md5 = "";
        try {
            //實例化一個采用MD5算法的 信息摘要
            algorithm = MessageDigest.getInstance("MD5");
            algorithm.reset();// 重置摘要 以供使用
            algorithm.update(str.getBytes());//使用bytes更新摘要
            byte[] bytes = algorithm.digest();
            md5 = toHexString(bytes,"");
            Log.d(TAG,"MD5Encode:"+str+",md5:"+md5);
        }catch (Exception e){
            e.printStackTrace();
        }finally {

        }

        return md5;
    }

    public static String toHexString(byte[] bytes,String seperator){

        StringBuffer hexString = new StringBuffer();
        for(byte b:bytes){
            String hex = Integer.toHexString(b&0xff);
            if(hex.length() == 1){
                hexString.append("0");
            }
            hexString.append(hex).append(seperator);
        }
        return hexString.toString();
    }

SHA 安全散列算法 : 也是一種單向的數(shù)據(jù)加密算法

 /**
     * SHA 安全散列算法
     * @param str
     * @return
     */
    public static String SHAEncode(String str){

        MessageDigest algorithm;
        String sha = "";
        try {
            algorithm = MessageDigest.getInstance("SHA");
            algorithm.reset();
            algorithm.update(str.getBytes());
            byte[] bytes = algorithm.digest();
            sha = toHexString(bytes,"");
        }catch (NoSuchAlgorithmException e){

        }finally {

        }
        Log.d(TAG,"SHAEncode:"+str+",sha:"+sha);
        return sha;
    }

Base64 加密算法

Base64 并不是安全領域的加密算法,只能算是一個編碼算法。標準的Base64編碼解碼無需任何額外的信息即完全可逆。
Base64 編碼 本質(zhì)上是一種將二進制數(shù)據(jù)轉(zhuǎn)換成文本數(shù)據(jù)的方案。對于非二進制數(shù)據(jù),是先將其轉(zhuǎn)換成二進制形式,然后每連續(xù)6個比特(2^6 = 64) 計算其十進制值,根據(jù)該值在A-Z、a-z、0-9、+、/ 這64個字符種找到對應的字符,最終得到一個文本串。

  • 標準的Base64只有64個字符(A-Z、a-z、0-9、+、/)以及用作后綴的等號
  • Base64是把3個子節(jié)變成4個字符,所以base64編碼后的字符串一定能狗被4整除(不算用作后綴的=)
  • 等號一定用作后綴,并且數(shù)目一定是0個、1個和2個。這是因為如果原文長度不能被3整除,Base64要在后面添加\0湊齊3n位.為了正確還原,添加了幾個\0就加上幾個等號。顯然添加等號的數(shù)目只能是0、1或2;
  • 嚴格來說Base64不能算一種加密,只能說是編碼轉(zhuǎn)換。


    image
public static String base64Encode(String origStr){
        byte[] endcode =  Base64.encode(origStr.getBytes(),Base64.DEFAULT);
        String encodeStr = new String(endcode);
        Log.d(TAG,"origStr:"+origStr+",endcodeStr:"+encodeStr);
        return encodeStr;
    }

    public static String base64Decode(String encodedStr){

        byte[] orign = Base64.decode(encodedStr,Base64.DEFAULT);
        String orignStr = new String(orign);
        return orignStr;
    }
  • 針對Base64.DEFAULT參數(shù)說明

DEFAULT 這個參數(shù)是默認,使用默認的方法來加密

NO_PADDING 這個參數(shù)是略去加密字符串最后的”=”

NO_WRAP 這個參數(shù)意思是略去所有的換行符(設置后CRLF就沒用了)

CRLF 這個參數(shù)看起來比較眼熟,它就是Win風格的換行符,意思就是使用CR LF這一對作為一行的結尾而不是Unix風格的LF

URL_SAFE 這個參數(shù)意思是加密時不使用對URL和文件名有特殊意義的字符來作為加密字符,具體就是以-和_取代+和/

DES加密(Data Encryption Standard) 數(shù)據(jù)加密標準

  • DES加密算法出自IBM的研究,后來被美國政府采用,之后廣為流傳。但近年來使用越來越少,因為DES 使用56位密鑰,以現(xiàn)代的計算能力,24小時即可破解。
  • DES 使用固定的8個字節(jié)(8bytes)作為密鑰,初始化向量 也為8bytes

常用常量:

    private final static String HEX = "0123456789ABCDEF";
    private final static String TRANSFORMATION = "DES/CBC/PKCS5Padding";//DES是加密方式 CBC是工作模式 PKCS5Padding是填充模式
    private final static String IVPARAMETERSPEC = "01020304";////初始化向量參數(shù),AES 為16bytes. DES 為8bytes.
    private final static String ALGORITHM = "DES";//DES是加密方式
    private static final String SHA1PRNG = "SHA1PRNG";//// SHA1PRNG 強隨機種子算法, 要區(qū)別4.2以上版本的調(diào)用方法
// 初始化向量(8字節(jié)),隨意填充
    private static byte[] iv = { 'a', 'b', 'c', 'd', 'e', 1, 2, '*'};

    /**
     * DES (Data Encryption Standard)  數(shù)據(jù)標準加密:DES 加密的Key 只能是8byte (8個字節(jié))
     * @param key
     * @param encryptText
     * @return
     */
    public static String DESEncode(String key,String encryptText){
        byte[] keyBytes = key.getBytes();//原始的加密key

        //SecretKeySpec - 為加密后的秘鑰
        SecretKeySpec secrectKey = new SecretKeySpec(keyBytes,"DES");
        IvParameterSpec ivParameterSpec = new IvParameterSpec(iv);

        Cipher cipher = null;
        String output = "";
        try {
            cipher= Cipher.getInstance("DES/CBC/PKCS5Padding");//加密算法/工作方式/?
            cipher.init(Cipher.ENCRYPT_MODE,secrectKey,ivParameterSpec);//指定加密動作 和加密鑰
            byte[] encryptData = cipher.doFinal(encryptText.getBytes());
            output = Base64.encodeToString(encryptData,Base64.DEFAULT);

        }catch (Exception e){
            e.printStackTrace();
        }finally {

        }
        return output;
    }

    public static String DESDecode(String key,String decryptString){

        byte[] orginKey = key.getBytes();
        SecretKeySpec secretKeySpec = new SecretKeySpec(orginKey,"DES");

        IvParameterSpec ivParameterSpec = new IvParameterSpec(iv);

        byte[] base64Decode = Base64.decode(decryptString.getBytes(),Base64.DEFAULT);
        Cipher cipher = null;
        String decodeStr = "";
        try {
            cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
            cipher.init(Cipher.DECRYPT_MODE,secretKeySpec,ivParameterSpec);
            byte[] descrptData = cipher.doFinal(base64Decode);
            decodeStr = new String(descrptData);
        }catch (Exception e){
            e.printStackTrace();
        }finally {

        }
        return decodeStr;
    }
    
    
    測試代碼:
        String org = "大漠孤煙直";
      
        String desEncode = EncodeUtils.DESEncode("*()&^%$#",org);
        String desDecode = EncodeUtils.DESDecode("*()&^%$#",desEncode);
        Log.d(TAG,"orig:"+org+",desEncode:"+desEncode+",desDecode:"+desDecode);

DES的擴展 3DES

3DES是DES加密算法的一種模式,它使用3條64位的密鑰對數(shù)據(jù)進行三次加密。
3DES(即Triple DES)是DES向AES過渡的加密算法(1999年,NIST將3-DES指定為過渡的加密標準),是DES的一個更安全的變形。

AES (Advanced Encryption Standard) 高級加密標準。AES 本身就是為了取代DES的,AES 具有更好的安全性、效率和靈活性。

/**
     * 真正的加密過程
     * 1.通過密鑰得到一個密鑰專用的對象SecretKeySpec
     * 2.Cipher 加密算法,加密模式和填充方式三部分或指定加密算 (可以只用寫算法然后用默認的其他方式)Cipher.getInstance("AES");
     * @param key
     * @param str
     * @return
     */
    public static String AESEncode(String key,String str){
        String result = "";
        SecretKeySpec secretKeySpec = new SecretKeySpec(generateKey(key),"AES");
        try {
            Cipher cipher = Cipher.getInstance("AES");//生成Cipher
            cipher.init(Cipher.ENCRYPT_MODE,secretKeySpec,new IvParameterSpec(new byte[cipher.getBlockSize()]));
            byte[] encrypted = cipher.doFinal(str.getBytes());
            result = toHexString(encrypted,"");
        }catch (Exception e){

        }finally {

        }
        return result;
    }


    /**
     * 生成 128、192、256位 秘鑰
     * @param rawKey
     * @return
     * @throws NoSuchAlgorithmException
     */
    public static byte[] generateKey(String rawKey){
        //秘鑰生成器
        try {
            KeyGenerator keyGenerator = KeyGenerator.getInstance("AES");
            SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
            sr.setSeed(rawKey.getBytes());
            keyGenerator.init(128,sr);
            SecretKey sKey = keyGenerator.generateKey();
            byte[] mKey = sKey.getEncoded();
            return mKey;
        }catch (Exception e){
            e.printStackTrace();
        }finally {

        }
        return null;
    }


    public static String AESDecode(String key_seed,String encrypedStr){

        byte[] rawData = toByte(encrypedStr);
        String result = "";
        SecretKeySpec secretKeySpec = new SecretKeySpec(generateKey(key_seed),"AES");
        try {
            Cipher cipher = Cipher.getInstance("AES");//生成Cipher
            cipher.init(Cipher.DECRYPT_MODE,secretKeySpec,new IvParameterSpec(new byte[cipher.getBlockSize()]));
            byte[] decrypted = cipher.doFinal(rawData);
            result = new String(decrypted);
        }catch (Exception e){
            e.printStackTrace();
        }finally {

        }
        return result;


    }

    // 將十六進制字符串為十進制字符串
    private static String fromHex(String hex) {
        return new String(toByte(hex));
    }

    // 將十六進制字符串為十進制字節(jié)數(shù)組
    private static byte[] toByte(String hex) {
        int len = hex.length() / 2;
        byte[] result = new byte[len];
        for (int i = 0; i < len; i++) {
            result[i] = Integer.valueOf(hex.substring(2 * i, 2 * i + 2), 16)
                    .byteValue();
        }
        return result;
    }

RSA 為非對稱加密

RSA算法是最流行的公鑰密碼算法,使用長度可以變化的密鑰。
RSA算法原理如下:

1.隨機選擇兩個大質(zhì)數(shù)p和q,p不等于q,計算N=pq;
2.選擇一個大于1小于N的自然數(shù)e,e必須與(p-1)(q-1)互素。
3.用公式計算出d:d×e = 1 (mod (p-1)(q-1)) 。
4.銷毀p和q。

RSA的安全性依賴于大數(shù)分解,小于1024為的 N 被證明是不安全的,而且由于RSA算法進行的搜時大數(shù)計算,使得RSA最快的情況也比DES慢上倍,這是RSA最大的缺陷。因此通常只能用于加密少量數(shù)據(jù)或者加密密鑰,但RSA仍然不失為一種高強度的算法。

如何使用RSA呢?

  • 第一步 生成秘鑰對。
  /**
     * 隨機生成RSA密鑰對
     *
     * @param keyLength 密鑰長度,范圍:512~2048
     *                  一般1024
     * @return
     */
    public static KeyPair generateRSAKeyPair(int keyLength) {
        try {
            KeyPairGenerator kpg = KeyPairGenerator.getInstance(RSA);
            kpg.initialize(keyLength);
            return kpg.genKeyPair();
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
            return null;
        }
    }
  • 第二步 使用公鑰加密 使用秘鑰解密 或者使用秘鑰加密、公鑰解密。
    /**
     * 私鑰加密
     *
     * @param data       待加密數(shù)據(jù)
     * @param privateKey 密鑰
     * @return byte[] 加密數(shù)據(jù)
     */
    public static byte[] encryptByPrivateKey(byte[] data, byte[] privateKey) throws Exception {
        // 得到私鑰
        PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(privateKey);
        KeyFactory kf = KeyFactory.getInstance(RSA);
        PrivateKey keyPrivate = kf.generatePrivate(keySpec);
        // 數(shù)據(jù)加密
        Cipher cipher = Cipher.getInstance(ECB_PKCS1_PADDING);
        cipher.init(Cipher.ENCRYPT_MODE, keyPrivate);
        return cipher.doFinal(data);
    }

/**
     * 公鑰解密
     *
     * @param data      待解密數(shù)據(jù)
     * @param publicKey 密鑰
     * @return byte[] 解密數(shù)據(jù)
     */
    public static byte[] decryptByPublicKey(byte[] data, byte[] publicKey) throws Exception {
        // 得到公鑰
        X509EncodedKeySpec keySpec = new X509EncodedKeySpec(publicKey);
        KeyFactory kf = KeyFactory.getInstance(RSA);
        PublicKey keyPublic = kf.generatePublic(keySpec);
        // 數(shù)據(jù)解密
        Cipher cipher = Cipher.getInstance(ECB_PKCS1_PADDING);
        cipher.init(Cipher.DECRYPT_MODE, keyPublic);
        return cipher.doFinal(data);
    }
/**
     * 私鑰加密
     *
     * @param data       待加密數(shù)據(jù)
     * @param privateKey 密鑰
     * @return byte[] 加密數(shù)據(jù)
     */
    public static byte[] encryptByPrivateKey(byte[] data, byte[] privateKey) throws Exception {
        // 得到私鑰
        PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(privateKey);
        KeyFactory kf = KeyFactory.getInstance(RSA);
        PrivateKey keyPrivate = kf.generatePrivate(keySpec);
        // 數(shù)據(jù)加密
        Cipher cipher = Cipher.getInstance(ECB_PKCS1_PADDING);
        cipher.init(Cipher.ENCRYPT_MODE, keyPrivate);
        return cipher.doFinal(data);
    }
/**
     * 使用私鑰進行解密
     */
    public static byte[] decryptByPrivateKey(byte[] encrypted, byte[] privateKey) throws Exception {
        // 得到私鑰
        PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(privateKey);
        KeyFactory kf = KeyFactory.getInstance(RSA);
        PrivateKey keyPrivate = kf.generatePrivate(keySpec);

        // 解密數(shù)據(jù)
        Cipher cp = Cipher.getInstance(ECB_PKCS1_PADDING);
        cp.init(Cipher.DECRYPT_MODE, keyPrivate);
        byte[] arr = cp.doFinal(encrypted);
        return arr;
    }

測試代碼:



        KeyPair keyPair = EncodeUtils.generateRSAKeyPair(DEFAULT_KEY_SIZE);
        RSAPublicKey publicKey = (RSAPublicKey)keyPair.getPublic();
        RSAPrivateKey privateKey = (RSAPrivateKey)keyPair.getPrivate();

        try {
            byte[]encrypteBytes = EncodeUtils.encryptByPublicKey(org.getBytes(),publicKey.getEncoded());
//            String encryptStr = EncodeUtils.base64Encode(encrypteBytes);
            byte[]base64Bytes  = Base64.encode(encrypteBytes,Base64.DEFAULT);

            String encodeStr = new String(base64Bytes);



            byte [] tmp = Base64.decode(encodeStr,Base64.DEFAULT);
            byte[]decryptBytes = EncodeUtils.decryptByPrivateKey(tmp,privateKey.getEncoded());
            String decodeStr = new String(decryptBytes);
            Log.d(TAG,"org:"+org+",encodeStr:"+encodeStr+",decodeStr:"+decodeStr);


        }catch (Exception e){
            e.printStackTrace();
        }

    }

參考鏈接:
http://www.cnblogs.com/whoislcj/p/5887859.html

?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容