This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#// IMPORTANT INFO | |
#// ! Be aware that this script works against the idea of diceware | |
#// because it does not use the real randomness of an analogue dice | |
#// but rests on computer pseudo randomness. Thats why the standard | |
#// length is set to 3 words, what is not enough for an offline attack- | |
#// able passphrase, but might be ok for several online portals. | |
#// That means, this script suits only for mid-level passwords. |