4

英語の発音可能なパスワードを生成するためのモジュールまたはソフトウェア ソリューション?

他の言語用の同様のモジュールはありますか?

-アダム

4

3 に答える 3

6

マルコフ連鎖法を調べたいと思うでしょう。次に例を示します。

自動生成されたパスワードは次のとおりです。

于 2008-10-09T19:36:36.140 に答える
2

polygenを探す必要がありますが、残念ながら英語版のソフトウェアがあるかどうかはわかりません。選択した決定されたルールを使用して、ランダムな単語/文を生成します (サイトには非常に面白いものが含まれていますが、イタリア語のみです:\ ルールは任意の言語で記述できます。)

于 2008-10-09T19:41:13.293 に答える
2

Once upon a time I put together my own extremely simple generator. It was just a dictionary with a couple thousand 3-5 letter English words. To make a password, I'd cat 2 of them together and append a (pseudo)random two-digit number.

2000 * 2000 * 90 = 360 Million possible combinations (dependent, of course, on the pseudo-random mechanism used to select the words). Not as good as a "professional" product, but maybe good enough depending on what you want to use it for.

于 2008-10-09T19:54:09.177 に答える