From c76f9701048c214c1feabc8b87aa1306a4a067be Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 30 Jun 2012 14:39:57 -0400 Subject: [PATCH] Replace lipsum with real text. --- hosted.css | 4 ++++ hosted.html | 26 ++++++++++++++++++-------- 2 files changed, 22 insertions(+), 8 deletions(-) diff --git a/hosted.css b/hosted.css index 16dd01b..9a79986 100644 --- a/hosted.css +++ b/hosted.css @@ -25,6 +25,10 @@ body { width: 50em; } +p { + margin-top: 1em; +} + iframe { border: none; padding: 0; diff --git a/hosted.html b/hosted.html index e928b95..5940c2f 100644 --- a/hosted.html +++ b/hosted.html @@ -9,17 +9,27 @@

Skeleton Key

- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod - tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim - veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea - commodo consequat. Duis aute irure dolor in reprehenderit in voluptate - velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat - cupidatat non proident, sunt in culpa qui officia deserunt mollit anim - id est laborum. + Skeleton Key is a password generator that uses + PBKDF2 to generate + secure, unique passwords for each website and account. It uses a master + password of your choosing, a unique “site key”, and your + username on the site to generate the password. This process is algorithmic, + meaning the same combination of inputs will always generate the same + output password. Skeleton Key hashes your password with the site key and + username 1,000 times, making it virtually impossible to get back your + original password.

- +

+ This web page has been built for offline use, meaning that your web + browser can display Skeleton Key even without a network connection. This + allows you to lookup your passwords at any time. There is also a + Chrome Extension that you can install. The + source code is also + available. +

+ -- 2.22.5