Replace lipsum with real text.
[skeletonkey.git] / hosted.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Skeleton Key Hosted</title>
5 <link rel="stylesheet" href="common.css" />
6 <link rel="stylesheet" href="hosted.css" />
7 </head>
8 <body>
9 <h1>Skeleton Key</h1>
10
11 <p>
12 Skeleton Key is a password generator that uses
13 <a href="http://en.wikipedia.org/wiki/PBKDF2">PBKDF2</a> to generate
14 secure, unique passwords for each website and account. It uses a master
15 password of your choosing, a unique &ldquo;site key&rdquo;, and your
16 username on the site to generate the password. This process is algorithmic,
17 meaning the same combination of inputs will always generate the same
18 output password. Skeleton Key hashes your password with the site key and
19 username 1,000 times, making it virtually impossible to get back your
20 original password.
21 </p>
22
23 <p>
24 This web page has been built for offline use, meaning that your web
25 browser can display Skeleton Key even without a network connection. This
26 allows you to lookup your passwords at any time. There is also a
27 <a href="#">Chrome Extension</a> that you can install. The
28 <a href="https://github.com/rsesek/skeletonkey">source code is also
29 available</a>.
30 </p>
31
32 <iframe id="core" src="core.html"></iframe>
33 <iframe id="options" src="options.html"></iframe>
34 </body>
35 </html>