xkcd-style password generator
~~~ $ xpg -h xkcd-style password generator
Usage: xpg [OPTIONS]
Options:
--analyze Analyze
-w, --words
~~~ $ xpg -V xpg 0.5.0 ~~~
~~~ $ xpg DoesFlowersStateSeptember ~~~
~~~ $ xpg -c 10 FenceWhichYellowGreece HawaiiUranusValueMoscow DistantMaybeFamilyCents DifferentInsteadCommonWheels FurtherDreamGoodbyeService MeatSettledRememberThrow SubstancesItselfRushEscape IndeedShoutedGrownWill BlockPerhapsUranusLess DoubleNeitherActionHunger ~~~
~~~ $ xpg -w 8 ColombiaPartyFourSceneEffortListenCornShore ~~~
~~~ $ xpg -w 8 -c 10 ShortBecauseFirmNeedlePeopleHungerPlainAnother MainPressSmallLordLakeTookTellWrote DesertRaisedMonthHouseDropWornPromiseNumeral BranchesSouthTouchTakeAfterBreakJumpedSimilar AcrossJamaicaExerciseAlongPageStudentsStudySpeak RockWagonBerlinColombiaItselfFourContainManner LeftToneAlaskaElementsReceivedHistoryMainReturn CourseJulyMatterRaceParticularHeavySuddenSpring ChildhoodDollarAdjectiveKeptGreenForeverGaveSuppose JumpedLowerDoubleGraveBearThinAllowSeven ~~~
~~~ $ xpg -w 2 -d 3 DuskSpecial597 ~~~
~~~ $ xpg -w 2 -s 2 GovernChief(! ~~~
~~~ $ xpg -w 2 -d 1 -s 1 SuccessDoctor1[ ~~~
~~~ $ xpg -l 2 CopenhagenTravelLondonBirdqc ~~~
~~~ $ xpg -u 2 AngryKnowSurfaceTillLT ~~~
~~~
$ xpg -a 5
WindInsideEastServeT>l ~~~
$ xpg -w 0 -a 20
f5@I%_CP@&{Q@(?E*t.1
~~~ ~~~
$ xpg --keychain
rml4uu-dclvzu-fotlQs
~~~ ~~~
$ xpg --code-name
ROOM TABLE
~~~ ~~~
$ xpg --analyze
* Word list length: 1,259
* Words in password: 4
* Total permutations (without repetition): 2,500,525,503,024 Words | Permutations
---|---:
1 | 1,259
2 | 1,583,822
3 | 1,990,864,254
4 | 2,500,525,503,024
5 | 3,138,159,506,295,120
6 | 3,935,252,020,894,080,480
7 | 4,930,870,782,180,282,841,440
8 | 6,173,450,219,289,714,117,482,880
... | ... ~~~ ~~~
$ xpg --analyze -w 8
* Word list length: 1,259
* Words in password: 8
* Total permutations (without repetition): 6,173,450,219,289,714,117,482,880 Words | Permutations
---|---:
1 | 1,259
2 | 1,583,822
3 | 1,990,864,254
4 | 2,500,525,503,024
5 | 3,138,159,506,295,120
6 | 3,935,252,020,894,080,480
7 | 4,930,870,782,180,282,841,440
8 | 6,173,450,219,289,714,117,482,880
... | ... ~~~ Word list comes from Bart Busschots'
HSXKPasswd
Perl module (GitHub,
CPAN: Crypt::HSXKPasswd),
specifically
lib/Crypt/HSXKPasswd/Dictionary/EN.pm@1d88564:38 ```
Copyright 2019-2022 qtfkwk Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
``` ~~~
$ cargo test running 11 tests
test tests::xpgcannotreturnzerowords - should panic ... ok
test tests::xpgmacrocannotreturnzerowords - should panic ... ok
test tests::xpgcanreturnoneword ... ok
test tests::xpgmacrocanreturnoneword ... ok
test tests::xpgcanreturnthreewords ... ok
test tests::xpgcanreturnfourwords ... ok
test tests::defaultxpgmacroreturnsfourwords ... ok
test tests::xpgmacrocanreturnfourwords ... ok
test tests::xpgmacrocanreturnthreewords ... ok
test tests::xpgcanreturnfivewords ... ok
test tests::xpgmacrocanreturnfivewords ... ok test result: ok. 11 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s ~~~```
1,259! / (1,259 - 4)!
1,259! / 1,255!
2,500,525,503,024
```
```
1,259! / (1,259 - 8)!
1,259! / 1,251!
6,173,450,219,289,714,117,482,880
```
Changelog
-c 0
xpg!
macro
choose_multiple
xpg
functionxpg!
macro to enable optional word count argumentReferences
Legal
Tests