wemall app商城源碼android開發MD5加密工具類

來源:互聯網
上載者:User

標籤:tar   encrypt   imp   public   targe   md5   wemall   使用   src   

wemall-mobile是基於WeMall的android app商城,只需要在原商城目錄下上傳介面檔案即可完成服務端的配置,用戶端可定製修改。本文分享android開發MD5加密工具類主要代碼,供技術員參考學習。

package com.gzcivil.utils;import java.io.UnsupportedEncodingException;import java.security.MessageDigest;import java.security.NoSuchAlgorithmException;public class MD5Tool {    public static String md5(String string) {        byte[] hash;        try {            hash = MessageDigest.getInstance("MD5").digest(string.getBytes("UTF-8"));        } catch (NoSuchAlgorithmException e) {            throw new RuntimeException("Huh, MD5 should be supported?", e);        } catch (UnsupportedEncodingException e) {            throw new RuntimeException("Huh, UTF-8 should be supported?", e);        }        StringBuilder hex = new StringBuilder(hash.length * 2);        for (byte b : hash) {            if ((b & 0xFF) < 0x10)                hex.append("0");            hex.append(Integer.toHexString(b & 0xFF));        }        return hex.toString();    }    public static String encrypt(String data) {        if (data == null)            data = "";        byte[] btRet = null;        try {            btRet = _encrypt(data.getBytes("utf-8"));        } catch (UnsupportedEncodingException e) {            e.printStackTrace();        }        if (btRet == null)            return null;        return BinStr.byte2str(btRet).toLowerCase();    }    /**     * 加密MD5     *      * @param content     *            需要加密的內容     * @param password     *            加密密碼     * @return     */    private static byte[] _encrypt(byte[] btData) {        try {            // 獲得MD5摘要演算法的 MessageDigest 對象            MessageDigest mdInst = MessageDigest.getInstance("MD5");            // 使用指定的位元組更新摘要            mdInst.update(btData);            // 獲得密文            return mdInst.digest();        } catch (Exception e) {            e.printStackTrace();            return null;        }    }         }

  

原文詳情地址:http://git.oschina.net/einsqing/wemall-mobile

wemall-mobile商城詳情地址:http://www.koahub.com/home/product/56

wemall官網地址:http://www.wemallshop.com

WeMall - 開源微商城 商城 商城源碼 分銷商城 b2b2c商城系統

wemall app商城源碼android開發MD5加密工具類

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.