带你深入了解nginx基本登录认证:使用python生成密码

centos 7.x上可以使用python语句简单地代替grub-crypt,下面的python语句都是交互式的。

1
python -c 'import crypt,getpass;pw=getpass.getpass();print(crypt.crypt(pw) if (pw==getpass.getpass("Confirm: ")) else exit())'

如果要非交互式,使用下面python语句:

1
python -c 'import crypt,getpass;pw="123456";print(crypt.crypt(pw))'

本系列文章

参考