forked from pwdhash/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (81 loc) · 3.71 KB
/
index.html
File metadata and controls
84 lines (81 loc) · 3.71 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
79
80
81
82
83
84
<html>
<head>
<meta name="google-site-verification" content="tsC40Go6u6ldH1pmeafOZhKJc7v1dxGQ6lYzxqlkN2I" />
<!--* Remote PwdHash Form
* An HTML form that calls the JavaScript implementation of PwdHash
* Version 1.0 Copyright (C) Stanford University 2004-2005
* Contributors: Dan Boneh, Collin Jackson, John Mitchell, Nick Miyake, and Blake Ross
* Distributed under the BSD License
* See http://crypto.stanford.edu/PwdHash for more info.
*-->
<title>PwdHash</title>
<script src="md5.js" type="text/javascript"></script>
<script src="pwdhash.js" type="text/javascript"></script>
<script src="hashed-password.js" type="text/javascript"></script>
<script src="domain-extractor.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="pwdhash.css" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body onLoad="Init();">
<table align=right style="margin: 3em 1em 1em 1em"><tr><td>
<form name="hashform" action="error.html" method="POST"
onsubmit="setTimeout('GenerateToTextField()', 0); return false;">
<table id="theHashForm"><tr>
<td class="stepList">
<div class="step" id="theSiteDomain">
<h3>Site Address</h3>
<p><input type="text" name="domain"></p>
</div>
<div class="step" id="theSitePassword">
<h3>Site Password</h3>
<p><input type="password" name="sitePassword"></p>
</div>
</td>
</tr>
<tr>
<td class="stepList" colspan="2">
<div class="step" id="theHashedPassword">
<h3>Hashed Password</h3>
<span id="theGeneratePanel">
<input type="text" name="hashedPassword">
<input type="submit" name"submitButton" value="Generate">
</span>
<p align="center"><a id="theToggleModeLink" href="javascript:ToggleAdvancedMode()"></a></p>
</div>
</td>
</tr>
</table>
</td></tr><tr><td><div class="footer">Version 0.8 (<a href="https://crypto.stanford.edu/PwdHash/RemotePwdHash/">more versions</a>)</div>
<div class="footer">Tip: You can save this page to disk.</div>
</td></tr></table>
<p align="center"><img src="stanford_seal64.gif"
alt="Stanford" align="center" width="64" height="64"> </p>
<H1 align=center><font color="#0000FF" face="Arial">
Stanford PwdHash
</font></H1>
<div id="theexplanation">
<p>
PwdHash generates theft-resistant passwords.
The PwdHash browser extension invisibly generates these passwords when it is installed in your web browser(like Chrome,Safari,Microsoft Edge,Internet explorer,Opera to name a few).
You can activate this protection by pressing F2 before you type
your password, or by choosing passwords that start with <tt>@@</tt>.
If you don't want to install PwdHash on your computer, you can generate the passwords right here.
<ul>
<li>Visit the <a href="http://crypto.stanford.edu/PwdHash/">Stanford project website</a>.</li>
<li>Install
<a href="https://addons.mozilla.org/en-US/firefox/addon/pwdhash/">PwdHash for Firefox</a>. It has been ported to <a href="https://chrome.google.com/extensions/detail/dnfmcfhnhnpoehjoommondmlmhdoonca">Chrome</a> and <a href="http://www.coredump.gr/pwdhash-for-opera/">Opera</a>.</li>
<li>Read the <a href="http://crypto.stanford.edu/PwdHash/pwdhash.pdf">USENIX Security Symposium 2005 paper</a> (PDF).</li>
<li>This site and plugin are no longer under active development and the <a href="http://github.com/collinjackson/pwdhash-website">code</a> is available for use. See individual files for license details.</li>
</ul>
</div>
</form>
<div style="text-align: center">
Contributors: <a href="http://www.blakeross.com/">Blake Ross</a>,
<a href="http://www.collinjackson.com/">Collin Jackson</a>,
Nicholas Miyake,
<A href="http://crypto.stanford.edu/~dabo/">Dan Boneh</A> and <A
href="http://theory.stanford.edu/people/jcm/home.html">John C.
Mitchell</A>
</div>
</body>
</html>