1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

覚えやすいパスワードを生成するコマンド sf-pwgen(macos 用)

Last updated at Posted at 2016-12-28

こんにちは。
sf-pwgen というコマンド(macos 用)を用いてパスワード候補を生成してみました。pwgen 1 に比べて幾分覚えやすい候補が得られるそうです。

これを使って英字大文字小文字数字記号を含む条件のものを出力させてみました(文字数=8、候補数=12)。

$ brew install sf-pwgen
$ sf-pwgen -a memorable -l 8 -c 100 | grep [a-z] | grep [A-Z] | grep [0-9] | grep "[\-\/:;()\\\&@\"\.,\?\!']" | head -n 12
 :
 :
Mac0.OSX
 :
 :
  1. Macで安全なパスワードを作成するコマンド

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?