mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 20:08:41 +00:00
* Move copying functionality to module_utils. * Add docker_container_copy_into module. * Use new module in other tests. * Fix copyright and attributes. * Improve idempotency, improve stat code. * Document and test when a stopped container works. * Improve owner/group detection error handling when container is stopped. * Fix formulation. Co-authored-by: Brian Scholer <1260690+briantist@users.noreply.github.com> * Improve file comparison. * Avoid reading whole file at once. * Stream when fetching files from daemon. * Fix comment. * Use read() instead of read1(). * Stream files when copying into container. * Linting. * Add force parameter. * Simplify library code. * Linting. * Add content and content_is_b64 options. * Make force=false work as for copy module: only copy if the destination does not exist. * Improve docs. * content should be no_log. * Implement diff mode. * Improve error handling. * Lint and improve. * Set owner/group ID to avoid ID lookup (which fails in paused containers). * Apply suggestions from code review Co-authored-by: Brian Scholer <1260690+briantist@users.noreply.github.com> Co-authored-by: Brian Scholer <1260690+briantist@users.noreply.github.com>
57 lines
1.8 KiB
Python
57 lines
1.8 KiB
Python
# Copyright 2016 Red Hat | Ansible
|
|
# 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
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import base64
|
|
import random
|
|
|
|
from ansible.module_utils.common.text.converters import to_bytes, to_native, to_text
|
|
from ansible.module_utils.six import PY2
|
|
|
|
|
|
def generate_insecure_key():
|
|
'''Do NOT use this for cryptographic purposes!'''
|
|
while True:
|
|
# Generate a one-byte key. Right now the functions below do not use more
|
|
# than one byte, so this is sufficient.
|
|
if PY2:
|
|
key = chr(random.randint(0, 255))
|
|
else:
|
|
key = bytes([random.randint(0, 255)])
|
|
# Return anything that is not zero
|
|
if key != b'\x00':
|
|
return key
|
|
|
|
|
|
def scramble(value, key):
|
|
'''Do NOT use this for cryptographic purposes!'''
|
|
if len(key) < 1:
|
|
raise ValueError('Key must be at least one byte')
|
|
value = to_bytes(value)
|
|
if PY2:
|
|
k = ord(key[0])
|
|
value = b''.join([chr(k ^ ord(b)) for b in value])
|
|
else:
|
|
k = key[0]
|
|
value = bytes([k ^ b for b in value])
|
|
return '=S=' + to_native(base64.b64encode(value))
|
|
|
|
|
|
def unscramble(value, key):
|
|
'''Do NOT use this for cryptographic purposes!'''
|
|
if len(key) < 1:
|
|
raise ValueError('Key must be at least one byte')
|
|
if not value.startswith(u'=S='):
|
|
raise ValueError('Value does not start with indicator')
|
|
value = base64.b64decode(value[3:])
|
|
if PY2:
|
|
k = ord(key[0])
|
|
value = b''.join([chr(k ^ ord(b)) for b in value])
|
|
else:
|
|
k = key[0]
|
|
value = bytes([k ^ b for b in value])
|
|
return to_text(value)
|