Replace lipsum with real text.
authorRobert Sesek <rsesek@bluestatic.org>
Sat, 30 Jun 2012 18:39:57 +0000 (14:39 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Sat, 30 Jun 2012 18:39:57 +0000 (14:39 -0400)
hosted.css
hosted.html

index 16dd01bc516e7801989bb2b2740c85009ad51700..9a79986abe18fca573f985c114c356659b52ae4c 100644 (file)
@@ -25,6 +25,10 @@ body {
   width: 50em;
 }
 
+p {
+  margin-top: 1em;
+}
+
 iframe {
   border: none;
   padding: 0;
index e928b957120bddf6b59ad2a25d503d6a0b607ef4..5940c2fa7514d5b45cfc07895b16d6fcc6f8a539 100644 (file)
@@ -9,17 +9,27 @@
     <h1>Skeleton Key</h1>
 
     <p>
-      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
+      <a href="http://en.wikipedia.org/wiki/PBKDF2">PBKDF2</a> to generate
+      secure, unique passwords for each website and account. It uses a master
+      password of your choosing, a unique &ldquo;site key&rdquo;, 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.
     </p>
 
-    <iframe id="core" src="core.html"></iframe>
+    <p>
+      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
+      <a href="#">Chrome Extension</a> that you can install. The
+      <a href="https://github.com/rsesek/skeletonkey">source code is also
+      available</a>.
+    </p>
 
+    <iframe id="core" src="core.html"></iframe>
     <iframe id="options" src="options.html"></iframe>
   </body>
 </html>