Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private String getEncodedPassword(String password) throws NoSuchAlgorithmException {
- MessageDigest md = MessageDigest.getInstance("MD5");
- md.update(password.getBytes());
- byte byteData[] = md.digest();
- StringBuffer sb = new StringBuffer();
- for (int i = 0; i < byteData.length; i++) {
- sb.append(Integer.toString((byteData[i] & 0xff) + 0x100, 16).substring(1));
- }
- StringBuffer hexString = new StringBuffer();
- for (int i = 0; i < byteData.length; i++) {
- String hex = Integer.toHexString(0xff & byteData[i]);
- if (hex.length() == 1) hexString.append('0');
- hexString.append(hex);
- }
- return hexString.toString();
- }
Advertisement
Add Comment
Please, Sign In to add comment