This repository was archived by the owner on Sep 25, 2021. It is now read-only.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
78 lines (78 loc) · 2.22 KB
/
Copy pathindex.html
File metadata and controls
78 lines (78 loc) · 2.22 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
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
<!DOCTYPE html>
<!--
/*
* JavaScript MD5 Demo
* https://github.com/blueimp/JavaScript-MD5
*
* Copyright 2011, Sebastian Tschan
* https://blueimp.net
*
* Licensed under the MIT license:
* https://opensource.org/licenses/MIT
*/
-->
<htmllang="en">
<head>
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<![endif]-->
<metacharset="utf-8" />
<title>JavaScript MD5 Demo</title>
<meta
name="description"
content="JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers."
/>
<metaname="viewport" content="width=device-width, initial-scale=1.0" />
<linkrel="stylesheet" href="css/demo.css" />
</head>
<body>
<h1>JavaScript MD5 Demo</h1>
<p>
JavaScript
<ahref="https://en.wikipedia.org/wiki/MD5">MD5</a> implementation.<br/>
Compatible with server-side environments like
<ahref="https://nodejs.org/">Node.js</a>, module loaders like
<ahref="https://requirejs.org/">RequireJS</a> or
<ahref="https://webpack.js.org/">webpack</a> and all web browsers.
</p>
<ulid="navigation">
<li>
<ahref="https://github.com/blueimp/JavaScript-MD5/releases"
>Download</a
>
</li>
<li>
<ahref="https://github.com/blueimp/JavaScript-MD5">Source Code</a>
</li>
<li>
<a
href="https://github.com/blueimp/JavaScript-MD5/blob/master/README.md"
>Documentation</a
>
</li>
<li><ahref="test/">Test</a></li>
<li><ahref="https://blueimp.net">© Sebastian Tschan</a></li>
</ul>
<scriptsrc="js/md5.js"></script>
<form>
<p>
<labelfor="input">Input</label>
<textarearows="6" id="input"></textarea>
</p>
<p>
<button
type="submit"
id="calculate"
onclick="result.value=md5(input.value);return false"
>
Calculate
</button>
<buttontype="reset" id="reset">Reset</button>
</p>
<p>
<labelfor="result">Result</label>
<inputid="result" readonly/>
</p>
</form>
</body>
</html>