• Java类 MD5&SHA加密


     

    package com.arui.util;  

    import java.security.MessageDigest;  
    import java.security.NoSuchAlgorithmException;  
     
    public class EncryptUtils {  
        /** 
         * Encrypt string using MD5 algorithm 
         */  
        public final static String encryptMD5(String source) {  
            if (source == null) {  
                source = "";  
            }  
            String result = "";  
            try {  
                result = encrypt(source, "MD5");  
            } catch (NoSuchAlgorithmException ex) {  
                // this should never happen  
                throw new RuntimeException(ex);  
            }  
            return result;  
        }  
        /** 
         * Encrypt string using SHA algorithm 
         */  
        public final static String encryptSHA(String source) {  
            if (source == null) {  
                source = "";  
            }  
            String result = "";  
            try {  
                result = encrypt(source, "SHA");  
            } catch (NoSuchAlgorithmException ex) {  
                // this should never happen  
                throw new RuntimeException(ex);  
            }  
            return result;  
        }  
        /** 
         * Encrypt string 
         */  
        private final static String encrypt(String source, String algorithm)  
                throws NoSuchAlgorithmException {  
            byte[] resByteArray = encrypt(source.getBytes(), algorithm);  
            return toHexString(resByteArray);  
        }  
        /** 
         * Encrypt byte array. 
         */  
        private final static byte[] encrypt(byte[] source, String algorithm)  
                throws NoSuchAlgorithmException {  
            MessageDigest md = MessageDigest.getInstance(algorithm);  
            md.reset();  
            md.update(source);  
            return md.digest();  
        }  
        /** 
         * Get hex string from byte array 
         */  
        private final static String toHexString(byte[] res) {  
            StringBuffer sb = new StringBuffer(res.length << 1);  
            for (int i = 0; i < res.length; i++) {  
                String digit = Integer.toHexString(0xFF & res[i]);  
                if (digit.length() == 1) {  
                    digit = '0' + digit;  
                }  
                sb.append(digit);  
            }  
            return sb.toString().toUpperCase();  
        }  
    }  
     
     
     
     
  • 相关阅读:
    剑指OFFER----面试题17- 打印从1到最大的n位数
    剑指OFFER----面试题16. 数值的整数次方
    剑指OFFER----面试题15. 二进制中1的个数
    剑指OFFER----面试题14- II. 剪绳子II
    07 多层if判断
    08 while循环
    06 if 流程控制
    03 身份运算符、逻辑运算符
    04 位运算符、运算符优先级
    02 赋值运算符、成员运算符
  • 原文地址:https://www.cnblogs.com/huhu0013/p/2766312.html
Copyright © 2020-2023  润新知