xpg 0.9.0

xkcd-style password generator
Documentation
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
# About

xkcd-style password generator

![](t/fig/password_strength.png)

[xkcd #936: Password Strength](https://xkcd.com/936/)

# Usage

```text
$ xpg -h
xpg 0.9.0 <https://crates.io/crates/xpg>

xkcd-style password generator

Usage: xpg [OPTIONS] [PATTERNS]...

Arguments:
  [PATTERNS]...  Pattern(s) (see note 1 below) [default: `wwww`, `-L`: `{a}`]

Options:
  -c, --count <NUMBER>     Number of passwords (0:∞ ) [default: 1]
  -l, --length <NUMBER>    Length
  -m, --minimum <NUMBER>   Minimum length
  -M, --maximum <NUMBER>   Maximum length
  -a, --attempts <NUMBER>  Attempts [default: 10]
  -C, --config <PATH>      Configuration file
  -e, --extended           Merge extended words
  -L, --list               List words in `{sub}`(s)
  -d, --dump-config        Print configuration
  -r, --readme             Print readme
  -h, --help               Print help
  -V, --version            Print version

---

Notes

1. Patterns
    * Words
        * `W`: WORD
        * `w`: word
        * `T`: Word
        * `k`: `shuffle(cccc(c|d)(C|c))`
        * `{sub}`: see `WordKind`s section in readme
    * Characters
        * `C`: A-Z
        * `c`: a-z
        * `d`: 0-9
        * `s`: `~!@#$%^&*-_=+;:,./?()[]{}<>`
        * `a`: `C` | `c` | `d` | `s`
    * Special
        * `keychain`
        * `codename`
        * `codename-series`

2. By default, extended words are only available in exclusively extended word
   kinds; however, with `-e`, they are merged with regular word kinds; use with
   the `-L` option to see its effect.
```

```text
$ xpg -V
xpg 0.9.0
```

*See also the [Configuration] section below.*

[Configuration]: #configuration

### Examples

```text
$ xpg
thickagainknowmove
```

#### Generate 10 passwords

```text
$ xpg -c 10
bankerscoreafricaindicate
answersafeallowtrain
thesecigarettelordbattery
foolburningbankerheat
lesssongkeepfiji
smiledsciencemasterdeveloped
noseoverdishrose
throughhavanajumpparty
teacherhaveshadeangle
sailflowersdollarkenya
```

#### Generate passwords forever

*or until Ctrl+C / SIGINT*

```text
$ xpg -c 0
gamesoonriverleft
windowcornclothrepeated
churchrightdiedpluto
togetherincreasemovealmost
countreachedmotherwalk
dearstillmusicsound
saltagreespotlate
roseweekhawaiismiled
factorswomenwriteprice
killedfijioffershare
^C
```

#### Generate a password with 8 words

```text
$ xpg wwwwwwww
snowtomorrowfancyballhardorderlyaroundcomplete
```

#### Generate 10 passwords with 8 words

```text
$ xpg wwwwwwww -c 10
stillgainmusicbeatmondaytuesdaypaperresult
factoriesheatcaseofficerestanimalbuildingpoint
showgentlemanmethodfathersilenttriesknowscale
beenclimbedplanenieceislandsuddenkindposeidon
freshbeautyhimselfbreadreachedsmallbesidewants
furtherhealthnaturalmelodyholedoublefellbritish
quietnineshipdistantinchesimportantleastturn
englandbroughtbrazilprobablewaleskindlegspage
beginpatternsystemdesignteacherracestringlater
rootbatteryconsiderablesouthernundercarebecausedifferent
```

#### Generate a password with 2 words followed by 3 digits

```text
$ xpg wwddd
requirejerusalem983
```

#### Generate a password with 2 words followed by 2 symbols

```text
$ xpg wwss
broughthera]]
```

#### Generate a password with 2 words followed by a digit and a symbol

```text
$ xpg wwds
catchfear7_
```

#### Generate a password with 4 words followed by 2 lowercase letters

```text
$ xpg wwwwcc
goldamongthousandsfigurefc
```

#### Generate a password with 4 words followed by 2 uppercase letters

```text
$ xpg wwwwCC
foundlistenapplecongoZF
```

#### Generate a password with 4 title case words

```text
$ xpg TTTT
ResentMailFearHere
```

#### Generate a password with 4 uppercase words

```text
$ xpg WWWW
DESCRIBERIDEFLIERPROUD
```

#### Generate a password with 4 words followed by 5 "any" characters

*An "any" character can be a lowercase letter, uppercase letter, digit, or
symbol.*

```text
$ xpg wwwwaaaaa
daughterdoublecompanycottonUM{en
```

#### Generate a password with 3 words and at least 15 characters

```text
$ xpg www -m 15
valleygladparagraph
```

#### Generate a password with 3 words and no more than 20 characters

```text
$ xpg www -M 20
asiaitselfallow
```

#### Generate a password with 4 words and between 20 and 25 characters

*Increase attempts to help it succeed.*

```text
$ xpg www -m 20 -M 25 -a 1000
childhoodegyptlisbon
```

#### Generate a password with 2 words, 3 digits, 1 symbol, and exactly 16 characters

*Increase attempts to help it succeed.*

```text
$ xpg wwddds -l 16 -a 1000
millionapril175~
```

#### Generate a password with a `1`, 2 title case words, and `!`

```text
$ xpg '1TT!'
1LastNecessary!
```

#### Generate a password with 1 symbol, 2 adjectives, 1 noun, and 2 digits

```text
$ xpg 's{adj}{adj}{n}dd'
.gentlebaserope89
```

#### Generate a password with 2 words and 1 extended word

```text
$ xpg 'ww{ext}'
ladyfarmersisonoe
```

#### Generate a password with 2 words and 1 title case extended word

```text
$ xpg 'ww{T:ext}'
shopsoldierMiranda
```

#### Generate a password with 2 words and 1 uppercase extended word

```text
$ xpg 'ww{W:ext}'
childbrazilLYSITHEA
```

#### Generate 10 passwords with 4 title case words and extended words merged

```text
$ xpg -ec 10 TTTT
PraxidikeMissouriFifteenNetherlands
ArticleSufferBesideArea
StickEasyBeatBeauty
RockDuringFijiLouisiana
SingBlowAmsterdamMaryland
ShouldDecidedBelievePeople
MomentHurtFillObject
SettleHereConnecticutMelody
SaysChaldeneCarmeCorner
AuntWithoutCannotTeacher
```

#### Generate a keychain-style password

```text
$ xpg keychain
bteOgr-wxuvne-iub9zn
```

#### Generate a code name

```text
$ xpg codename
FAST SUMMER
```

#### Generate a code name series

```text
$ xpg codename-series
YOUNGPLANT WHATTRIP
YOUNGPLANT FINALLYFAIL
YOUNGPLANT ACTIONSHOW
YOUNGPLANT FINISHEDFAVOR
YOUNGPLANT BROADANYTHING
YOUNGPLANT EXPRESSSIGHT
YOUNGPLANT BACKEFFORT
YOUNGPLANT DAUGHTERADDITION
YOUNGPLANT WIDEKNOWN
YOUNGPLANT LITTLEINFORMATION
```

#### Generate a code name series with 20 code names

```text
$ xpg codename-series -c 20
HARDTRUST FEELINGHELP
HARDTRUST WHATCROSS
HARDTRUST DONEWHEN
HARDTRUST MUCHLEAD
HARDTRUST NEAREFFORT
HARDTRUST MAINFEBRUARY
HARDTRUST HAPPYDREAM
HARDTRUST LONGHEART
HARDTRUST THOUSANDETCHING
HARDTRUST BEAUTIFULDARK
HARDTRUST TALLSIGNAL
HARDTRUST REALLYSEASON
HARDTRUST REALHONOR
HARDTRUST DOWNEQUAL
HARDTRUST YOURLADY
HARDTRUST OFTENCROPS
HARDTRUST EVENNOON
HARDTRUST SHARPSPOT
HARDTRUST FRONTFACE
HARDTRUST LITTLEFRUIT
```

#### Generate a password with 20 "any" characters

```text
$ xpg aaaaaaaaaaaaaaaaaaaa
C(A~[)YO@_(.v)O.F4WB
```

#### Same as the previous example, but shorter

*This works because a character-only pattern is padded to the minimum length
with the last character.*

```text
$ xpg a -m 20
K[9jbO(5Hjbf8%N.c9xG
```

#### Generate 3 passwords each from a different pattern

```text
$ xpg wwww WWWW TTTT
greecebarbadoskingkitchen
ALTHOUGHFALLHELLOPAID
WhereGoodGiveInside
```

#### List the words in Color / `{color}`

```text
$ xpg -L '{color}'
black
blue
brown
gray
green
white
yellow
```

#### List the words in Color / `{color}` in uppercase

```text
$ xpg -L '{W:color}'
BLACK
BLUE
BROWN
GRAY
GREEN
WHITE
YELLOW
```

#### List the words in Color / `{color}` in title case

```text
$ xpg -L '{T:color}'
Black
Blue
Brown
Gray
Green
White
Yellow
```

#### Count the words in Color / `{color}`

```text
$ xpg -L '{color}' |wc -l
7
```

#### List the words in Color / `{color}` and Element / `{W:el}`

```text
$ xpg -L '{color}' '{W:el}'
black
blue
brown
gray
green
white
yellow
GOLD
IRON
LEAD
MERCURY
OXYGEN
SILVER
```

#### Count words

```text
$ xpg -L |wc -l
1272
```

#### Count words with extended

```text
$ xpg -Le |wc -l
1400
```

# Configuration

See [`config.json`] or use `-d` for the default configuration compiled into the
binary executable.

[`config.json`]: config.json

If another file is placed at any of the following locations or the path provided
via the `-C` option at *runtime*, it will be used instead.

* Linux:
  `/home/username/.config/xpg/config.json`
* Windows:
  `C:\Users\username\AppData\Roaming\qtfkwk\xpg\config\config.json`
* macOS:
  `/Users/username/Library/Application Support/com.qtfkwk.xpg/config.json`

## `WordKind`s

* AllExtended / `{a.ext}`
    * All / `{a}`
        * Adjective / `{adj}`
            * Color\* / `{color}`
            * Nationality / `{nat}`
        * Adverb / `{adv}`
        * Conjunction / `{conj}`
        * Interjection / `{i}`
        * Noun / `{n}`
            * PluralNoun / `{n.pl}`
            * Pronoun / `{n.pro}`
            * SingularNoun / `{n.s}`
                * Astronomy / `{ast}`
                    * Moon / `{moon}`
                    * Planet / `{planet}`
                * Color\* / `{color}`
                * Day / `{day}`
                * Month / `{mon}`
                * ProperNoun / `{n.prop}`
                    * Element / `{el}`
                    * Name / `{name}`
                        * FemaleName / `{fname}`
                        * MaleName / `{mname}`
                    * Place / `{place}`
                        * City / `{city}`
                        * Continent / `{cont}`
                        * Country / `{country}`
                        * UsState / `{us-state}`
                    * Mythology / `{myth}`
                        * GreekMyth / `{greekmyth}`
                            * Olympian / `{olympian}`
                            * Chthonic / `{chthonic}`
                        * RomanMyth / `{romanmyth}`
        * Preposition / `{prep}`
        * Verb / `{v}`
            * AuxiliaryVerb / `{v.aux}`
            * IntransitiveVerb / `{v.int}`
            * TransitiveVerb / `{v.tr}`
            * VerbPast / `{v.past}`
    * Extended / `{ext}`
        * Noun / `{n}`
            * SingularNoun / `{n.s}`
                * Astronomy / `{ast}`
                    * Moon / `{moon}`
                        * MarsMoon / `{marsmoon}`
                        * JupiterMoon / `{jupitermoon}`
                        * SaturnMoon / `{saturnmoon}`
                        * UranusMoon / `{uranusmoon}`
                        * NeptuneMoon / `{neptunemoon}`

**Notes**

1. WordKind / `{sub}`

2. It is only necessary to set the most descriptive `WordKind`(s) since they are
   automatically included in the larger word kinds.

3. The `characters` object value must contain the `C`, `c`, and `d` keys with
   non-empty values.
   Additional keys/values can be added and used.

4. `{sub}`s produce lowercase words by default, but if prefixed with `W:` or
   `T:` words will be uppercase or title case, respectively: i.e. `{W:sub}` or
   `{T:sub}` (replace `sub` with an actual `{sub}` name above).

# Changelog

* 0.1.0 (2019-09-08): store wordlist as constant and operate on it without
  copying; select N words without repetition via `choose_multiple`; tests;
  benchmark various implementations; `xpg` function; `xpg!` macro to enable
  optional word count argument; command line interface via clap
* 0.1.1 (2019-09-08): minor fixes
* 0.1.2 (2019-09-08): minor fixes
* 0.2.0 (2019-09-09): expose `xpg!` macro; improve documentation
* 0.3.0 (2022-10-01): update dependencies; add digits and symbols options
* 0.3.1 (2022-10-01): fix readme
* 0.4.0 (2022-10-02): add --lowercase, --uppercase, and --any options; enable
  --words option to be zero if --any option is greater than zero; enable
  infinite passwords via `-c 0`
* 0.5.0 (2022-10-13): add --keychain and --code-name options
* 0.6.0 (2023-11-22): remove num and factorial crate dependencies; improve
  permutations function; update dependencies; apply clippy fixes and cargo fmt;
  reorganize
* 0.6.1 (2023-11-22): fix readme
* 0.7.0 (2023-11-24): complete redesign
* 0.8.0 (2023-11-25): remove benchmark; simplify cli options; add `-r` and `-C`
  options; restore `-c 0` functionality; add `codename-series` special pattern;
  add word kind subpatterns; enable external runtime configuration via new
  `Config` struct
* 0.8.1 (2023-11-25): fix `-C` option
* 0.9.0 (2023-11-26): add extended words; enable multiple patterns; add `-e` and
  `-L` options; make `-d` dump the loaded not default configuration

# References

* Word list originated from Bart Busschots'
  [HSXKPasswd]https://www.bartbusschots.ie/s/publications/software/xkpasswd/
  Perl module ([GitHub]https://github.com/bbusschots/hsxkpasswd,
  [CPAN: Crypt::HSXKPasswd]http://search.cpan.org/perldoc?Crypt%3A%3AHSXKPasswd),
  specifically
  [lib/Crypt/HSXKPasswd/Dictionary/EN.pm@1d88564:38]https://github.com/bbusschots/hsxkpasswd/blob/1d88564d5bf74cf48025b372bcb635fc022962dd/lib/Crypt/HSXKPasswd/Dictionary/EN.pm#L38