php md5 16字符二進制格式 用JAVA寫
問題描述
md5($password_hash, true)這個php函數(shù)誰能用java寫出來
問題解答
回答1:import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; class CreateMD5 {public static String getMd5(String plainText , boolean rawOutPut) { try { MessageDigest md = MessageDigest.getInstance('MD5'); md.update(plainText.getBytes()); byte b[] = md.digest();int i;StringBuffer buf = new StringBuffer(''); for (int offset = 0; offset < b.length; offset++) { i = b[offset]; if (i < 0) i += 256; if (i < 16) buf.append('0'); buf.append(Integer.toHexString(i)); } if(rawOutPut){return buf.toString().substring(8, 24); } return buf.toString(); } catch (NoSuchAlgorithmException e) { e.printStackTrace(); return null; }} public static void main(String[] args) { System.out.println(CreateMD5.getMd5('segmentfault',true)); } }
相關(guān)文章:
1. python小白 關(guān)于類里面的方法獲取變量失敗的問題2. thinkPHP5中獲取數(shù)據(jù)庫數(shù)據(jù)后默認選中下拉框的值,傳遞到后臺消失不見。有圖有代碼,希望有人幫忙3. linux運維 - python遠程控制windows如何實現(xiàn)4. Python2中code.co_kwonlyargcount的等效寫法5. javascript - 如何用最快的速度C#或Python開發(fā)一個桌面應(yīng)用程序來訪問我的網(wǎng)站?6. django - Python error: [Errno 99] Cannot assign requested address7. mysql數(shù)據(jù)庫做關(guān)聯(lián)一般用id還是用戶名8. [python2]local variable referenced before assignment問題9. 求救一下,用新版的phpstudy,數(shù)據(jù)庫過段時間會消失是什么情況?10. python小白,關(guān)于函數(shù)問題
