Android MD5 Encode md5(final String s)

Here you can find the source of md5(final String s)

Description

md

Declaration

public static final String md5(final String s) 

Method Source Code

//package com.java2s;

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class Main {
    public static final String md5(final String s) {
        try {//from   w  w  w  .  j a v a  2s .c  om
            // Create MD5 Hash
            MessageDigest digest = MessageDigest.getInstance("MD5");
            digest.update(s.getBytes());
            byte messageDigest[] = digest.digest();

            // Create Hex String
            StringBuffer hexString = new StringBuffer();
            for (int i = 0; i < messageDigest.length; i++) {
                String h = Integer.toHexString(0xFF & messageDigest[i]);
                while (h.length() < 2)
                    h = "0" + h;
                hexString.append(h);
            }
            return hexString.toString();

        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        }
        return "";
    }
}

Related

  1. MD5(String str)
  2. MD5Encode(String origin)
  3. getMD5Code(String value)
  4. getMD5(String s)
  5. MD5(String s)
  6. md5(final String s)
  7. hexMD5(String input)
  8. getMD5(String str)
  9. getMD5Digest(String str)