スクリプトキー電卓

スクリプトキー電卓

scrypt大量のメモリを使用するようにチューニングできるパスワードベースのキー派生機能です。

password私のパラメータ値(、、、、、、、、、、のパラメータに似ています)が与えられsaltたら、キーを計算するコマンドラインインターフェイスが必要です。nrplengthpasswordsaltcostbcrypt

好ましくは、そのようなものを使用scrypt --password message --salt mysalt -n 1024 -r 8 -p 8 --length 32して9a5ef931679f5003248953b6eea3827ca32eb6d07a417126670ba8555f40a0e0

どのソフトウェアが作業を実行できますか?

ベストアンサー1

この実装はscryptあなたの要件を満たすようです。https://github.com/jkalbhenn/scrypt

scrypt-kdf [options ...] password [salt N r p size salt-size]
                         string string integer integer integer integer integer]
options
  -b|--base91-input  password and salt arguments are base91 encoded
  -c|--check hash  test if hash is derived from a password
  -h|--help  display this text and exit
  -p|--crypt  use unix crypt format
  -v|--version  output version information and exit

おすすめ記事