├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── encryptfile ├── README.md ├── __init__.py ├── __main__.py └── encryptfile.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── encryptfile ├── __init__.py └── test_encryptfile.py ├── files ├── empty_file ├── plain_text.txt └── semi_structure_data.xml └── pytest.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/README.md -------------------------------------------------------------------------------- /encryptfile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/encryptfile/README.md -------------------------------------------------------------------------------- /encryptfile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /encryptfile/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/encryptfile/__main__.py -------------------------------------------------------------------------------- /encryptfile/encryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/encryptfile/encryptfile.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/encryptfile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/encryptfile/test_encryptfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/tests/encryptfile/test_encryptfile.py -------------------------------------------------------------------------------- /tests/files/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/files/plain_text.txt: -------------------------------------------------------------------------------- 1 | ine3 -------------------------------------------------------------------------------- /tests/files/semi_structure_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/tests/files/semi_structure_data.xml -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brunocampos01/encrypt-file/HEAD/tests/pytest.ini --------------------------------------------------------------------------------