|
1 <!DOCTYPE html> |
|
2 <!-- |
|
3 OTPWCalc - One time password challenge response calculator client |
|
4 Copyright © 2013 Michael Schloh von Bennewitz <michael@schloh.com> |
|
5 |
|
6 OTPWCalc is free software: you can redistribute it and/or modify |
|
7 it under the terms of the European Union Public Licence, either |
|
8 version 1.1 of the license, or (at your option) any later version. |
|
9 |
|
10 OTPWCalc is distributed in the hope that it will be useful, |
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty |
|
12 of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
|
13 the European Union Public License for more details. |
|
14 |
|
15 You should have received a copy of the European Union Public |
|
16 Licence along with OTPWCalc. If not, please refer to |
|
17 <http://joinup.ec.europa.eu/software/page/eupl/>. |
|
18 |
|
19 This file is part of project OTWPCalc, a one time password challenge |
|
20 response calculator client and is found at http://otpwcalc.europalab.com/ |
|
21 |
|
22 hqst.html: W3C HTML implementation |
|
23 --> |
|
24 |
|
25 <html> |
|
26 <head> |
|
27 <meta charset="utf-8"> |
|
28 <meta name="viewport" content="width=device-width, initial-scale=1"> |
|
29 <title>OTPWCalc</title> |
|
30 <link rel="stylesheet" href="../css/jquery.mobile-1.3.2.min.css" /> |
|
31 <link rel="stylesheet" href="../main.css" /> |
|
32 <script src="../js/jquery-2.0.0.min.js"></script> |
|
33 <script src="help.js"></script> |
|
34 <script src="../js/jquery.mobile-1.3.2.min.js"></script> |
|
35 </head> |
|
36 <body> |
|
37 <!-- Data attributes reserved by JQuery Mobile: |
|
38 data-theme, data-ajax, data-filter, data-icon, data-grid, |
|
39 data-rel, data-icon, data-url, data-role, and data-type --> |
|
40 <!-- Also data-dom-cache="true" --> |
|
41 <div data-role="page" class="type-interior oc-swipage" id="quickstart"> |
|
42 <div data-role="header" data-position="fixed" data-id="headquick"> |
|
43 <h1>OTPWCalc</h1> |
|
44 </div><!-- /header --> |
|
45 <div data-role="content"> |
|
46 <h3 style="margin-top: 0; margin-bottom: 0;"> |
|
47 To start using OTPWCalc now… |
|
48 </h3> |
|
49 <ol style="margin-top: 0.5em; margin-bottom: 0;"> |
|
50 <li style="margin-bottom: 0.5em;">Install and configure a OTP authentication server on the <strong>host computer</strong>.</li> |
|
51 <li style="margin-bottom: 0.5em;">Add a username, seed ID, and password to the OTP <strong>authentication server</strong>.</li> |
|
52 <li style="margin-bottom: 0.5em;">Log in to the host computer providing the recently added username. The host computer will reply with a challange including the appropriate <strong>seed ID</strong> and a new <strong>counter number</strong>.</li> |
|
53 <li style="margin-bottom: 0.5em;">Type the seed ID and counter number along with the corresponding password into OTPWCalc. Click <strong>Submit</strong>.</li> |
|
54 <li style="margin-bottom: 0.5em;">Read the resulting OTP in <div style="display: inline-block; color: rgb(192,0,0); text-transform: none;">red uppercase characters</div>.</li> |
|
55 <li style="margin-bottom: 0.5em;">Type the OTP into the host computer console and…<br /><em>Enjoy <strong>secure</strong> access!</em></li> |
|
56 </ol> |
|
57 </div><!-- /content --> |
|
58 </div><!-- /page --> |
|
59 </body> |
|
60 </html> |