Phrase generator for stronger password/passphrase.
Visit https://strongest-mashimashi.web.app/ to see the function.
-
A phrase generator.
- A phrase is consists of some adjective and 1 noun.
-
For generating strong password/passphrase.
- Words, that consists a phrase, are choose randomly from English dictionary.
- But note that words that are too short or too long are excluded not to be the phrase too short or too long.
- A phrase always ends with noun, it may help us to remember easily than just a random phrase like uuid.
For example, using curl, use API as follows.
$ curl -X POST https://asia-northeast1-strongest-mashimashi.cloudfunctions.net/generate?num=3
- phrase length can be specified using query
num
.- It is optional. If
num
is not specified, it is assumed to be3
. - For example,
- If
num
is 1, then a noun will be returned. - If
num
is 3, then 2 adjective and 1 noun will be returned. - If
num
is 5, then 4 adjective and 1 noun will be returned.
- If
- Neither
num
cannot be negative, nor more than equal 6, nor other than integer.
- It is optional. If
MIT
Yosuke Akatsuka (@pankona)