diff options
author | Aaron LI <aly@aaronly.me> | 2018-04-09 14:22:39 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2018-04-09 14:22:39 +0800 |
commit | 7cdc6db5c05589a87b2a46da96fbdc5977eb16ca (patch) | |
tree | d22677c421e49e159cece4d29bcce715e5b00e5d /filter_plugins | |
parent | 497fa1f71a65103796629b134e9aeaf110dc39e7 (diff) | |
download | ansible-dfly-vps-7cdc6db5c05589a87b2a46da96fbdc5977eb16ca.tar.bz2 |
Add filter_plugins/passwd.py with cryptpass() method
Diffstat (limited to 'filter_plugins')
-rw-r--r-- | filter_plugins/passwd.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/filter_plugins/passwd.py b/filter_plugins/passwd.py new file mode 100644 index 0000000..252cd6e --- /dev/null +++ b/filter_plugins/passwd.py @@ -0,0 +1,29 @@ +# Copyright (c) 2018 Aaron LI <aly@aaronly.me> +# MIT License + +""" +Custom Ansible template filters to crypt/hash passwords. +""" + +import os +import base64 +import crypt + + +def cryptpass(p): + """ + Crypt the given plaintext password with salted SHA512 scheme, + which is supported by Linux/BSDs. + """ + hashtype = "$6$" + saltlen = 16 + salt = os.urandom(saltlen) + salt = base64.b64encode(salt)[:saltlen] + return crypt.crypt(p, hashtype+salt) + + +class FilterModule(object): + def filters(self): + return { + "cryptpass": cryptpass, + } |