forked from madwyn/FastMD5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
47 lines (45 loc) · 1.61 KB
/
index.htm
File metadata and controls
47 lines (45 loc) · 1.61 KB
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
<!doctype html>
<html>
<head>
<title>FastMD5</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<script src="lib/md5.js" type="text/javascript"></script>
<script src="js/md5jkm.js" type="text/javascript"></script>
<script src="js/js-md5.js" type="text/javascript"></script>
<script src="js/store.js" type="text/javascript"></script>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="win">
<div id="menu">
<div id="menu-tests">Tests</div>
<div id="menu-benchmark">Benchmark</div>
</div>
<div id="loading">Loading...<br><noscript>Enable JavaScript at first!</noscript></div>
<div id="content">
<div id="content-tests">
<div id="info-tests" class="info"><b>The purpose of these tests</b> is to eliminate any possible errors caused by incorrect work of the library.</div>
<div id="run-tests" class="button-1">Run Tests</div>
<table id="content-tests-table" cellpadding="0" cellspacing="0">
<tr>
<td width="50%">NAME</td>
<td width="50%">STATE</td>
</tr>
</table>
</div>
<div id="content-benchmark">
<div id="info-benchmark" class="info">A simple tool to compare performance of some MD5 libraries.</div>
<div id="run-benchmark" class="button-1">Run Benchmark</div>
<table id="content-benchmark-table" cellpadding="0" cellspacing="0">
<tr>
<td width="50%">NAME</td>
<td width="30%">TIME</td>
<td width="20%">EFFICIENCY</td>
</tr>
</table>
</div>
</div>
</div>
<script src="js/ui.js" type="text/javascript"></script>
</body>
</html>