-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (60 loc) · 3.14 KB
/
index.html
File metadata and controls
78 lines (60 loc) · 3.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<link rel='stylesheet' type='text/css' href='fonts/Chivo-Black.css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-dark.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>Passman by mat8913</title>
</head>
<body>
<div id="container">
<div class="inner">
<header>
<h1>Passman</h1>
<h2>A graphical password manager</h2>
</header>
<section id="downloads" class="clearfix">
<a href="https://github.com/mat8913/passman/zipball/master" id="download-zip" class="button"><span>Download .zip</span></a>
<a href="https://github.com/mat8913/passman/tarball/master" id="download-tar-gz" class="button"><span>Download .tar.gz</span></a>
<a href="https://github.com/mat8913/passman" id="view-on-github" class="button"><span>View on GitHub</span></a>
</section>
<hr>
<section id="main_content">
<h1>
<a id="passman" class="anchor" href="#passman" aria-hidden="true"><span class="octicon octicon-link"></span></a>passman</h1>
<p>Passman is a password manager written in Haskell. It generates passwords from a
master password and a short string. These strings are to be kept in a text file
which passman will load to generate passwords. The generated passwords will be
128 characters by default but can be shortened if required.</p>
<h2>
<a id="usage" class="anchor" href="#usage" aria-hidden="true"><span class="octicon octicon-link"></span></a>usage</h2>
<p>On first usage, passman will prompt for a master password. This master password
must be entered each time a password is generated. To change the master
password, delete ~/.passman-masterpasswd but note that generated passwords will
now be different.</p>
<p>To generate a password, passman will prompt for the master password</p>
<p><img src="screenshots/enter-password.png" alt="enter-password"></p>
<p>The generated password will then be stored in clipboard. Clicking "OK" on the
next dialog will clear the clipboard.</p>
<p><img src="screenshots/ok.png" alt="OK"></p>
<h2>
<a id="file-format" class="anchor" href="#file-format" aria-hidden="true"><span class="octicon octicon-link"></span></a>file format</h2>
<p>Separate strings with newlines. If the password needs to be shorter than 128
characters, add the length to the end of the line separated by a tab. An example
is provided as example.txt:</p>
<p><img src="screenshots/main-screen.png" alt="main-screen"></p>
</section>
<footer>
Passman is maintained by <a href="https://github.com/mat8913">mat8913</a><br>
This page was generated by <a href="https://pages.github.com">GitHub Pages</a>. Tactile theme by <a href="https://twitter.com/jasonlong">Jason Long</a>.
</footer>
</div>
</div>
</body>
</html>