Skip to content

Commit 9faf58d

Browse files
committed
Final changes for second release, version 2.1.0
1 parent 4955d53 commit 9faf58d

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

Diff for: README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,14 @@
33

44
[PwdHash by Cambridge](https://www.cl.cam.ac.uk/~dl551/pwdhash/) is a proof-of-concept alteration of the original Stanford PwdHash, but with a number of improvements that fix some of the weaknesses of the original. PwdHash-PoC uses the Forge implementation of PBKDF2-SHA512 to generate hashes.
55

6-
This version of PwdHash is both a web extension for common browsers as well a simple web page. You can install it as an add-on or just save the whole page locally.
6+
This version of PwdHash is both a web extension for common browsers (like [Firefox](https://addons.mozilla.org/de/developers/addon/pwdhash-sidebar)) as well a [simple web page](https://quassy.github.io/pwdhash/). You can install it as an add-on or just save the whole page locally.
77

8-
# Authors
8+
## Screenshots
9+
10+
![Enter your password to generate a hash for the respective page.](_screenshots/generate_hash.png)
11+
![Use the sidebar menu or press F4 to open the PwdHash Sidebar.](_screenshots/open_sidebar.png)
12+
13+
## Authors
914
This software was created by quassy and is released under the BSD licence.
1015

1116
It is based on the previous work of several authors:
File renamed without changes.

Diff for: style.css

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
html, body {
66
min-height: 100%;
77
min-height: 100vh;
8-
font-family: Roboto1, Roboto, sans-serif;
98
font-size: 16px;
109
line-height: 24px;
1110
}
@@ -32,7 +31,6 @@ form > div {
3231
}
3332
label, input, select {
3433
padding: .5em;
35-
font-family: Roboto1, Roboto, sans-serif;
3634
font-size: 16px;
3735
line-height: 24px;
3836
box-sizing: border-box;
@@ -58,4 +56,11 @@ input {
5856
min-width: 12em;
5957
flex-grow: 1;
6058
height: auto !important;
59+
}
60+
input:focus {
61+
color: #229Dd7;
62+
border-bottom-color: #229Dd7;
63+
}
64+
a {
65+
color: #229Dd7;
6166
}

0 commit comments

Comments
 (0)