summaryrefslogtreecommitdiff
path: root/files/jotpass.1-0.1.0.html
blob: 75ab8b4c8c20b43a57ab6b8941c9123d8a4c41cb (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<!-- This is an automatically generated file.  Do not edit.
   Copyright (c) 2021 Stefan Kreutz <mail@skreutz.com>
  
   Permission to use, copy, modify, and distribute this software for any
   purpose with or without fee is hereby granted, provided that the above
   copyright notice and this permission notice appear in all copies.
  
   THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 -->
<head>
  <meta charset="utf-8"/>
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <style>
    table.head, table.foot { width: 100%; }
    td.head-rtitle, td.foot-os { text-align: right; }
    td.head-vol { text-align: center; }
    .Nd, .Bf, .Op { display: inline; }
    .Pa, .Ad { font-style: italic; }
    .Ms { font-weight: bold; }
    .Bl-diag > dt { font-weight: bold; }
    code.Nm, .Fl, .Cm, .Ic, code.In, .Fd, .Fn, .Cd { font-weight: bold;
      font-family: inherit; }
  </style>
  <title>JOTPASS(1)</title>
</head>
<body>
<table class="head">
  <tr>
    <td class="head-ltitle">JOTPASS(1)</td>
    <td class="head-vol">General Commands Manual</td>
    <td class="head-rtitle">JOTPASS(1)</td>
  </tr>
</table>
<div class="manual-text">
<section class="Sh">
<h1 class="Sh" id="NAME"><a class="permalink" href="#NAME">NAME</a></h1>
<p class="Pp"><code class="Nm">jotpass</code> &#x2014; <span class="Nd">Print
    readable random passwords</span></p>
</section>
<section class="Sh">
<h1 class="Sh" id="SYNOPSIS"><a class="permalink" href="#SYNOPSIS">SYNOPSIS</a></h1>
<table class="Nm">
  <tr>
    <td><code class="Nm">jotpass</code></td>
    <td>[<code class="Fl">-v</code>] [<code class="Fl">-a</code>
      <var class="Ar">alphabet</var>] [<code class="Fl">-g</code>
      <var class="Ar">groups</var>] [<code class="Fl">-w</code>
      <var class="Ar">width</var>] [<code class="Fl">-s</code>
      <var class="Ar">separator</var>]</td>
  </tr>
</table>
</section>
<section class="Sh">
<h1 class="Sh" id="DESCRIPTION"><a class="permalink" href="#DESCRIPTION">DESCRIPTION</a></h1>
<p class="Pp">The <code class="Nm">jotpass</code> utility facilitates generating
    random passwords suitable for handwriting.</p>
<p class="Pp">The options are as follows:</p>
<dl class="Bl-tag">
  <dt id="v"><a class="permalink" href="#v"><code class="Fl">-v</code></a></dt>
  <dd>Enable verbose mode. Causes <code class="Nm">jotpass</code> to print the
      entropy of the generated password to standard error.</dd>
  <dt id="a"><a class="permalink" href="#a"><code class="Fl">-a</code></a>
    <var class="Ar">alphabet</var></dt>
  <dd>Draw characters from the given <var class="Ar">alphabet</var>. Defaults to
      alphanumeric ASCII characters, excluding 01klnuvIO to improve
    legibility.</dd>
  <dt id="g"><a class="permalink" href="#g"><code class="Fl">-g</code></a>
    <var class="Ar">groups</var></dt>
  <dd>Set the number of <var class="Ar">groups</var>. Defaults to 12.</dd>
  <dt id="w"><a class="permalink" href="#w"><code class="Fl">-w</code></a>
    <var class="Ar">width</var></dt>
  <dd>Set the <var class="Ar">width</var> of the groups. Defaults to 4
      characters.</dd>
  <dt id="s"><a class="permalink" href="#s"><code class="Fl">-s</code></a>
    <var class="Ar">separator</var></dt>
  <dd>Set the group <var class="Ar">separator</var> character. Defaults to dash
      (-).</dd>
</dl>
</section>
<section class="Sh">
<h1 class="Sh" id="EXIT_STATUS"><a class="permalink" href="#EXIT_STATUS">EXIT
  STATUS</a></h1>
<p class="Pp">The <code class="Nm">jotpass</code> utility exits&#x00A0;0 on
    success, and&#x00A0;&gt;0 if an error occurs.</p>
</section>
<section class="Sh">
<h1 class="Sh" id="EXAMPLES"><a class="permalink" href="#EXAMPLES">EXAMPLES</a></h1>
<p class="Pp">Print a random password:</p>
<div class="Bd Pp Bd-indent Li">
<pre>$ jotpass
P6ji-4pRZ-Ze7m-q7Bp-Vpye-HCjr-hygF-6TwQ-oRJT-yx6p-SyMB-AwUm</pre>
</div>
<p class="Pp">Specify a custom format:</p>
<div class="Bd Pp Bd-indent Li">
<pre>$ jotpass -a 0123456789abcdef -g 8 -w 2 -s ' ' -v
49 1b 6e b0 e2 fc 16 b1
The generated password has an entropy of 64 bits.</pre>
</div>
</section>
<section class="Sh">
<h1 class="Sh" id="SEE_ALSO"><a class="permalink" href="#SEE_ALSO">SEE
  ALSO</a></h1>
<p class="Pp"><a class="Xr">jot(1)</a>, <a class="Xr">arc4random(3)</a></p>
</section>
<section class="Sh">
<h1 class="Sh" id="AUTHORS"><a class="permalink" href="#AUTHORS">AUTHORS</a></h1>
<p class="Pp"><span class="An">Stefan Kreutz</span>
    &lt;<a class="Mt" href="mailto:mail@skreutz.com">mail@skreutz.com</a>&gt;</p>
</section>
</div>
<table class="foot">
  <tr>
    <td class="foot-date">October 12, 2021</td>
    <td class="foot-os">OpenBSD 7.0</td>
  </tr>
</table>
</body>
</html>
Generated by cgit. See skreutz.com for my tech blog and contact information.