-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmyfch32.html
96 lines (86 loc) · 2.71 KB
/
myfch32.html
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="j35tor">
<title>xxHash32 Checksum Validator</title>
</head>
<body>
xxHash32 file Checksum Validator:<br>
<form style="font-family:Arial;font-size:14px" >
<font color="blue">Expected</font> Checksum
<input type="text" name="checksum" id="checksum" size="6" >
<input type="text" name="checksumFile" id="checksumFile" size="15" ><input
type="button" value="❌" onclick="boxclear('checksum'); boxclear('checksumFile')" />
<br />
<font color="blue">Pick/drag</font> the file =>
<input type="file" id="filetoRead"
style="font-family:arial;font-size:14px;border: 2px solid blue;" />
</form>
<table>
<tr>
<td>File processing status:</td>
<td id="read_blks">0%</td>
</tr>
</table>
-------------------------------------------------------------- <br />
<table>
<tr>
<td>File Checksum: </td>
<td id="checksumOut" style="font-family:monospace;font-size:14px;" ></td>
</tr>
<tr>
<td>Expected Checksum: </td>
<td id="feedChecksum" style="font-family:monospace;font-size:14px;" ></td>
</tr>
<tr>
<td id="ok">Checksum status: unknown?</td>
</tr>
</table>
<br />
<table id="sha1table" style="font-family:monospace;font-size:16px; border: 1px solid black;" border="1">
</table>
<a id="quickLink" href ="." ></a>
<br />
<br />
<a href="https://toolbox.googleapps.com/apps/dig/">Google Dig</a>
    
<a href="http://cloud.disroot.org">Disroot </a>
    
<a href="https://web.whatsapp.com/">Whatsapp </a>
    
<a href="http://search.kmb.hk/kmbwebsite/">KMB </a>
<br />
<a href="https://web.telegram.org/#/login">Telegram </a>
    
<a href="https://transfer.sh/">Transfer.sh </a>
    
<a href="https://www.cipherdyne.org/cgi-bin/myip">myip </a>
    
<a href="https://regex101.com/">Regex101</a>
<br />
<a href="https://keyserver.2ndquadrant.com/">PubKeys</a>
    
<a href="https://www.compart.com/en/unicode/">Symbols</a>
     
<a href="https://mega.nz/folder/Fs9HQYTZ#tc5h_4qA9AMqLbvaEVYjpg">
Mega</a>
    
<a href="./webtools/">
webtools
<br />
<a href="https://desktop.github.com/">gitDesk</a>
    
<a href="https://vscode.dev/">vscode.dev</a>
    
<!--
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/xxhash.min.js"></script>
-->
<script src="https://unpkg.com/xxhash-wasm/umd/xxhash-wasm.js"></script>
<script src="./myfch32.js"></script>
<script src="./myfch32_data.js"></script>
<br />
</body>
</html>