mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-03-26 21:33:25 +00:00
* luks_device: allow passphrases to contain newlines This is useful when passing binary keyfiles from an ansible vault, as it removes the restriction that the binary data cannot contain newlines. The only exception is adding a new key to an existing container, as in that case the two passphrases are separated by a new line. * add integration tests and a changelog fragment * attempt to also make luks_add_key work with passphrases containing newlines * use a deterministic method to generate keyfile 3, improve changelog formatting * add licence and copyright to keyfile3.txt to satisfy CI
8 lines
307 B
Plaintext
8 lines
307 B
Plaintext
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
generated with:
|
|
|
|
dd if=/dev/zero of=/dev/stdout bs=1 count=4096 | openssl enc -aes-256-ctr -pass pass:1234 -nosalt
|