-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileCreator.java
97 lines (75 loc) · 2.83 KB
/
FileCreator.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package Main.java;
import java.io.*;
import java.net.URISyntaxException;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.util.Scanner;
public class FileCreator {
static MessageDigest digest;
public static void main(String[]args){
/*
https://www.baeldung.com/java-read-lines-large-file
*/
String dir = null;
try{
File root = new File(Thread.currentThread().getContextClassLoader().getResource("").toURI());
dir = root +"/Main/resources/";
root = null;
}catch(Exception ignored){}
FileInputStream inputStream = null;
FileOutputStream outputStream = null;
Scanner scan = null;
try {
inputStream = new FileInputStream(dir + "null.txt");
outputStream = new FileOutputStream(dir + "null.txt",true);
scan = new Scanner(inputStream, StandardCharsets.UTF_8);
int i = 0;
while (scan.hasNextLine()) {
String line = StringFunctions.convert(scan.nextLine().split("\t")[0]);
//System.out.println(line);
outputStream.write((line + "\t" + getSHA(line) + "\n").getBytes());
System.out.println(i);
i++;
//if(i > 20){break;}
//@todo remove this break and create a new file with [key, password]. Put this file in resources and read from
//it to see if SHA keys match up!
}
// note that Scanner suppresses exceptions
} catch (Exception e) {
e.printStackTrace();
} finally {
if (inputStream != null) {
try {
outputStream.close();
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (scan != null) {
scan.close();
}
}
}
public static String getSHA(String text){
try {
digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(text.getBytes(StandardCharsets.UTF_8));
String temp = bytesToHex(hash);
//System.out.println(text + ": " + temp);
return(temp);
} catch (Exception e) {
e.printStackTrace();
}
return(null);
}
private static String bytesToHex(byte[] hash) {
StringBuilder hexString = new StringBuilder();
for (byte b : hash) {
String hex = Integer.toHexString(0xff & b);
if (hex.length() == 1) hexString.append('0');
hexString.append(hex);
}
return hexString.toString();
}
}