Skip to content

Commit

Permalink
Final changes for second release, version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
quassy committed Jul 23, 2017
1 parent 4955d53 commit 9faf58d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@

[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.

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.
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.

# Authors
## Screenshots

![Enter your password to generate a hash for the respective page.](_screenshots/generate_hash.png)
![Use the sidebar menu or press F4 to open the PwdHash Sidebar.](_screenshots/open_sidebar.png)

## Authors
This software was created by quassy and is released under the BSD licence.

It is based on the previous work of several authors:
Expand Down
File renamed without changes.
9 changes: 7 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
html, body {
min-height: 100%;
min-height: 100vh;
font-family: Roboto1, Roboto, sans-serif;
font-size: 16px;
line-height: 24px;
}
Expand All @@ -32,7 +31,6 @@ form > div {
}
label, input, select {
padding: .5em;
font-family: Roboto1, Roboto, sans-serif;
font-size: 16px;
line-height: 24px;
box-sizing: border-box;
Expand All @@ -58,4 +56,11 @@ input {
min-width: 12em;
flex-grow: 1;
height: auto !important;
}
input:focus {
color: #229Dd7;
border-bottom-color: #229Dd7;
}
a {
color: #229Dd7;
}

0 comments on commit 9faf58d

Please sign in to comment.