forked from ericwoodruff/passwordhasherplus
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpasshashplus.html
executable file
·210 lines (198 loc) · 7.56 KB
/
passhashplus.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<html>
<head>
<meta charset="utf-8">
<!--
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Password Hasher Plus
*
* The Initial Developer of the Original Code is Eric Woodruff.
* Portions created by the Initial Developer are Copyright (C) 2010
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): Steve Purchase
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
-->
<title>Password Hasher Plus - portable page</title>
<style>
* { font-family: Arial; font-size: 12px; }
.hidden { display: none; }
td.label { vertical-align:top; width:10em; }
.form-group h4 {
color: #666;
margin: 3px 0px;
}
.form-group ul {
list-style: none;
padding: 0;
margin: 0;
}
.form-group li {
padding:0;
margin:0;
}
.form-group label {
padding:0px;
margin:0px;
width: auto;
}
.form-group input {
vertical-align: middle;
}
</style>
<script type="text/javascript" src="lib/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="lib/sha1.js"></script>
<script type="text/javascript" src="lib/passhashcommon.js"></script>
<script type="text/javascript" src="lib/tld.js"></script>
<script type="text/javascript" src="common.js"></script>
<script type="text/javascript" src="passhashplus.js"></script>
<script type="application/json" id="database"></script>
<script type="application/json" id="is-file-portable">
false
</script> <!-- see [is-file-portable] in passhashplus.js -->
</head>
<body>
<h1>This is the Password Hasher Plus portable HTML page</h1>
<div style="">
<select id="urls">
</select>
<table border="0">
<tr>
<td></td>
<td>
<p>The private key is not used/needed if the site tag begins with "compatible:"</p>
</td>
</tr>
<tr>
<td class="label">Private Key:</td>
<td>
<input id="seed" type="password" class="nopasshash" size="48" maxlength="45"/>
<input type="button" value="a" id="unmaskseed" title="Disable/enable Masking"/>
</td>
</tr>
<tr>
<td class="label">Site Tag:</td>
<td>
<input style="width: 134px;" type="password" class="nopasshash" id="tag" value="" />
<input type="button" value="a" id="unmasktag" title="Disable/enable Masking"/>
<input type="button" value="Bump" id="bump" />
</td>
</tr>
<tr>
<td class="label">Passphrase:</td>
<td>
<input style="width: 134px;" type="password" class="nopasshash" id="input" value="" />
<input type="button" value="a" id="unmaskpassword" title="Disable/enable Masking"/>
</td>
</tr>
<tr>
<td class="label">Password Length:</td>
<td><select id="length" class="nopasshash">
<option value="2">2</option>
<option value="4">4</option>
<option value="6">6</option>
<option value="8">8</option>
<option value="10">10</option>
<option value="12">12</option>
<option value="14">14</option>
<option value="16">16</option>
<option value="18">18</option>
<option value="20">20</option>
<option value="22">22</option>
<option value="24">24</option>
<option value="26">26</option>
</select></td>
</tr>
<tr>
<td>Password Strength:</td>
<td><select id="strength" class="nopasshash">
<option value="2">Alphanumeric+Special</option>
<option value="1">Alphanumeric</option>
<option value="0">Numeric</option>
<option value="-1">Custom</option>
</select></td>
</tr>
<tr id="customstrengthrow" class="hidden">
<td class="label">Custom Password Strength options:</td>
<td><div class="browser-style form-group"><ul>
<h4>Requirements</h4>
<li><input class="nopasshash" type="checkbox" id="d" checked="true"/><label for="d">At least one digit</label></li>
<li><input class="nopasshash" type="checkbox" id="p" checked="true"/><label for="p">At least on punctuation character</label></li>
<li><input class="nopasshash" type="checkbox" id="m" checked="true"/><label class="browser-style" for="m">Both upper- and lower-case letters</label></li>
<h4>Restrictions</h4>
<li><input class="nopasshash" type="checkbox" id="r"/><label for="r">No special characters</label></li>
</ul></div> </td>
</tr>
<tr>
<td class="label">
Hash Result:
</td>
<td>
<!--- I would like to set the type of the hash field to "password."
But modern browsers don't like you to copy from password fields.
An alternative would be to use something like ZeroClipboard, which could
copy the hash value from a hidden field, to the clipboard.
However, it requires flash, so some sort of fallback would be needed
for clients which do not have flash.
I settled on a compromise, which is to use a very short text field,
so only the first character or so is visible. -->
<!--- Note the width of the hash field, 1em. 1em is wide enough to show at least
one character (1em = the height of the M character). This is important, because
some browsers (at least Chrome), will not let you copy from a field too narrow
to show any text. -->
<input id="hash" type="text" maxlength="45" style="width: 1em;" readonly/>
<input type="button" value="<->" id="widenhash" title="Widen hash field"/>
<button id="copy">Copy Hash</button>
</td>
</tr>
<tr>
<td>
</td>
<td>
Click the hash to select it, then press Ctrl+c to copy it to the clipboard.<br/>
The <-> button widens the hash field, revealing the whole hash.
Watch out for shoulder surfers when using the <-> button.
They might have photographic memory / equipment.
</td>
</tr>
</table>
</div>
<h2>Database backup</h2>
<div><p>Your database is also backed up in this portable html page.</p></div>
<div>
<input type="button" value="Reveal" id="revealdatabase" title="Reveal Database"/>
</div>
<div>
<textarea id="databasetextarea" cols="120" rows="12" style="display: none;">
</textarea>
</div>
<div id="savediv" style="display: none;">
<h2>Download portable html page</h2>
<a download="passhashplus.html" id="save"><input type="button" value="Download"/></a>
</div>
</body>
</html>