123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- //
- // Source code recreated from a .class file by IntelliJ IDEA
- // (powered by Fernflower decompiler)
- //
- package com.huimv.receive.common.utils;
- import org.apache.commons.lang3.Validate;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.UnsupportedEncodingException;
- import java.security.GeneralSecurityException;
- import java.security.MessageDigest;
- import java.security.SecureRandom;
- public class Digests {
- private static final String SHA1 = "SHA-1";
- private static final String MD5 = "MD5";
- private static SecureRandom random = new SecureRandom();
- public Digests() {
- }
- public static byte[] md5(byte[] input) {
- return digest(input, "MD5", (byte[])null, 1);
- }
- public static byte[] md5(byte[] input, int iterations) {
- return digest(input, "MD5", (byte[])null, iterations);
- }
- public static byte[] sha1(byte[] input) {
- return digest(input, "SHA-1", (byte[])null, 1);
- }
- public static byte[] sha1(byte[] input, byte[] salt) {
- return digest(input, "SHA-1", salt, 1);
- }
- public static byte[] sha1(byte[] input, byte[] salt, int iterations) {
- return digest(input, "SHA-1", salt, iterations);
- }
- private static byte[] digest(byte[] input, String algorithm, byte[] salt, int iterations) {
- try {
- MessageDigest digest = MessageDigest.getInstance(algorithm);
- if (salt != null) {
- digest.update(salt);
- }
- byte[] result = digest.digest(input);
- for(int i = 1; i < iterations; ++i) {
- digest.reset();
- result = digest.digest(result);
- }
- return result;
- } catch (GeneralSecurityException var7) {
- throw new RuntimeException(var7);
- }
- }
- public static byte[] generateSalt(int numBytes) {
- Validate.isTrue(numBytes > 0, "numBytes argument must be a positive integer (1 or larger)", (long)numBytes);
- byte[] bytes = new byte[numBytes];
- random.nextBytes(bytes);
- return bytes;
- }
- public static byte[] md5(InputStream input) throws IOException {
- return digest(input, "MD5");
- }
- public static byte[] sha1(InputStream input) throws IOException {
- return digest(input, "SHA-1");
- }
- private static byte[] digest(InputStream input, String algorithm) throws IOException {
- try {
- MessageDigest messageDigest = MessageDigest.getInstance(algorithm);
- int bufferLength = 8192;
- byte[] buffer = new byte[bufferLength];
- for(int read = input.read(buffer, 0, bufferLength); read > -1; read = input.read(buffer, 0, bufferLength)) {
- messageDigest.update(buffer, 0, read);
- }
- return messageDigest.digest();
- } catch (GeneralSecurityException var6) {
- throw new RuntimeException(var6);
- }
- }
- public static final String md5(String s) {
- char[] hexDigits = new char[]{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
- try {
- MessageDigest mdTemp = MessageDigest.getInstance("MD5");
- try {
- mdTemp.update(s.getBytes("UTF-8"));
- } catch (UnsupportedEncodingException var9) {
- mdTemp.update(s.getBytes());
- }
- byte[] md = mdTemp.digest();
- int j = md.length;
- char[] str = new char[j * 2];
- int k = 0;
- for(int i = 0; i < j; ++i) {
- byte byte0 = md[i];
- str[k++] = hexDigits[byte0 >>> 4 & 15];
- str[k++] = hexDigits[byte0 & 15];
- }
- return (new String(str)).toUpperCase();
- } catch (Exception var10) {
- return null;
- }
- }
- public static final String buildToken(String url, String paramJson, String secret) {
- String tempUrl = null;
- if (url.contains("https://")) {
- tempUrl = url.substring("https://".length());
- } else {
- tempUrl = url.substring("http://".length());
- }
- int index = tempUrl.indexOf("/");
- String URI = tempUrl.substring(index);
- String[] ss = URI.split("\\?");
- return ss.length > 1 ? md5(ss[0] + ss[1] + secret) : md5(ss[0] + paramJson + secret);
- }
- public static void main(String[] args) {
- System.out.println(md5("abc"));
- }
- }
|