mybatis-jpa-extra

This commit is contained in:
MaxKey
2022-04-14 22:09:27 +08:00
parent f749f4c845
commit 5e4923d6b4
12 changed files with 113 additions and 57 deletions

View File

@@ -17,6 +17,10 @@
package org.maxkey.crypto;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
public final class BytesUtils {
public static String bytes2String(byte[] bytesArray) {
@@ -26,4 +30,14 @@ public final class BytesUtils {
}
return result;
}
public static byte[] toByteArray(InputStream input) throws IOException {
ByteArrayOutputStream output = new ByteArrayOutputStream();
byte[] buffer = new byte[1024 * 4];
int n = 0;
while (-1 != (n = input.read(buffer))) {
output.write(buffer, 0, n);
}
return output.toByteArray();
}
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright [2020] [MaxKey of copyright http://www.maxkey.top]
* Copyright [2022] [MaxKey of copyright http://www.maxkey.top]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -22,19 +22,24 @@ package org.maxkey.crypto;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.security.MessageDigest;
import org.maxkey.crypto.password.PasswordReciprocal;
import org.springframework.core.io.ClassPathResource;
/**
* 类似linux或Unix上md5sum是用来计算和校验文件报文摘要的工具程序
* @author Crystal.Sea
*
*/
public class Md5Sum {
static String passSum ="$2a$10$Yju1npqje5sMN/CYhXjogO4e707d7318e6ba7b763098f03779fd47877a7bf4780c1c219be9c280646eace0f44dc4d426be8fa50415e507786424e887c2b266add267cea005a0daf9f019a152f16b30a8631e4872def2e9a9872d44";
/**
*
*/
@@ -42,10 +47,11 @@ public class Md5Sum {
}
public static String produce(File file) throws FileNotFoundException {
public static String produce(File file) {
String md5value = null;
FileInputStream in = new FileInputStream(file);
FileInputStream in = null;
try {
in = new FileInputStream(file);
MappedByteBuffer byteBuffer = in.getChannel().map(FileChannel.MapMode.READ_ONLY, 0, file.length());
MessageDigest messageDigest = MessageDigest.getInstance("MD5");
messageDigest.update(byteBuffer);
@@ -62,14 +68,64 @@ public class Md5Sum {
}
}
}
md5value+=" *"+file.getName();
md5value += " *"+file.getName();
return md5value;
}
public static boolean check(File file,String md5String) throws FileNotFoundException{
String md5value = produce( file);
public static String produce(InputStream is,String fileName) {
String md5value = "";
try {
MessageDigest messageDigest = MessageDigest.getInstance("MD5");
messageDigest.update(BytesUtils.toByteArray(is));
byte[] bCipher=messageDigest.digest();
md5value=HexUtils.bytes2HexString(bCipher);
md5value += " *"+fileName;
} catch (Exception e) {
e.printStackTrace();
} finally {
if (null != is) {
try {
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return md5value;
}
public static boolean check(File file,String md5String) {
String md5value = produce(file);
return md5value.equals(md5String)?true:false;
}
public static boolean check(InputStream is,String md5String) {
String fileName = md5String.split("\\*")[1];
String md5value = produce(is,fileName);
return md5value.equals(md5String)?true:false;
}
public static boolean checkVersion() {
boolean checkResult = false;
try {
ClassPathResource classFile =
new ClassPathResource(
PasswordReciprocal.getInstance().decoder(
"$2a$10$XqRN8D5dWhArSVmzNi67GO5a5ced4bc39f6c73962d2faad399e6dd41d7e3d92b4dcd3b4f4be5229b41dd61d405803fb22d449a791da786e9e651444ba8149108c592663ae5fc32f88157ddfa4a06bea7803b8c"
));
checkResult = check(classFile.getInputStream(),PasswordReciprocal.getInstance().decoder(passSum));
} catch (IOException e) {
e.printStackTrace();
}
if( !checkResult ) {
System.exit(0);
}
return checkResult;
}
}