mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-03 23:14:02 -07:00
Fixes #6820 fix erroneous missing vault password error when using the template module
This commit is contained in:
parent
466ab0a9d6
commit
5a65dc3b6a
4 changed files with 6 additions and 6 deletions
|
@ -451,7 +451,6 @@ class VaultAES256(object):
|
|||
derivedkey = PBKDF2(password, salt, dkLen=(2 * keylength) + ivlength,
|
||||
count=10000, prf=pbkdf2_prf)
|
||||
|
||||
#import epdb; epdb.st()
|
||||
key1 = derivedkey[:keylength]
|
||||
key2 = derivedkey[keylength:(keylength * 2)]
|
||||
iv = derivedkey[(keylength * 2):(keylength * 2) + ivlength]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue