java密碼編譯演算法實現

來源:互聯網
上載者:User

標籤:oid   rac   md5加密   value   font   驗證   get   cat   class   

1. MD5和SHA加密,常用於加密使用者名稱密碼,當使用者驗證時; RSA加密允許解密,常用於常值內容的加密。

MD5演算法和SHA演算法屬於非對稱性演算法,一般被認為是無法復原的

主要使用了java.security.MessageDigest類

 1、 Java中的MD5實現

         MD5密碼編譯演算法的Java實現如下所示:

import java.security.MessageDigest;public class MD5Util {    /***      * MD5加密 產生32位md5碼     * @param 待加密字串     * @return 返回32位md5碼     */    public static String md5Encode(String inStr) throws Exception {        MessageDigest md5 = null;        try {            md5 = MessageDigest.getInstance("MD5");        } catch (Exception e) {            System.out.println(e.toString());            e.printStackTrace();            return "";        }        byte[] byteArray = inStr.getBytes("UTF-8");        byte[] md5Bytes = md5.digest(byteArray);        StringBuffer hexValue = new StringBuffer();        for (int i = 0; i < md5Bytes.length; i++) {            int val = ((int) md5Bytes[i]) & 0xff;            if (val < 16) {                hexValue.append("0");            }            hexValue.append(Integer.toHexString(val));        }        return hexValue.toString();    }    /**     * 測試主函數     * @param args     * @throws Exception     */    public static void main(String args[]) throws Exception {        String str = new String("ami");        System.out.println("原始:" + str);        System.out.println("MD5後:" + md5Encode(str));    }}

 

2、 Java中的SHA實現

         SHA的在Java的實現與MD5類似,參考代碼如下所示:

import java.security.MessageDigest;public class SHAUtil {    /***      * SHA加密 產生40位SHA碼     * @param 待加密字串     * @return 返回40位SHA碼     */    public static String shaEncode(String inStr) throws Exception {        MessageDigest sha = null;        try {            sha = MessageDigest.getInstance("SHA");        } catch (Exception e) {            System.out.println(e.toString());            e.printStackTrace();            return "";        }        byte[] byteArray = inStr.getBytes("UTF-8");        byte[] md5Bytes = sha.digest(byteArray);        StringBuffer hexValue = new StringBuffer();        for (int i = 0; i < md5Bytes.length; i++) {            int val = ((int) md5Bytes[i]) & 0xff;            if (val < 16) {                 hexValue.append("0");            }            hexValue.append(Integer.toHexString(val));        }        return hexValue.toString();    }    /**     * 測試主函數     * @param args     * @throws Exception     */    public static void main(String args[]) throws Exception {        String str = new String("amigoxiexiexingxing");        System.out.println("原始:" + str);        System.out.println("SHA後:" + shaEncode(str));    }}

 

  

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.