Passphrase generator using German word list and Python’s "secrets.choice()" to select from the list. Are those strong passphrases?
There are a numerous passprase generators out there, but all (I have found) use English words to build the passphrase. I’d rather use German words, so I wrote a generator in Python that selects words from a large list of German words. I wo…