Metadata-Version: 2.3
Name: secure-test-automation
Version: 1.0.0
Summary: Crypto tool for automation frameworks
Home-page: https://github.com/dmberezovskyii/secure-test-automation
License: MIT
Keywords: cryptography,Selenum,appium,secrets,security
Author: Dmytro Berezovskyi
Author-email: dmberezovskyi@gmail.com
Requires-Python: >=3.12.6,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: PyYAML (==6.0.2)
Requires-Dist: beautifulsoup4 (==4.11.1)
Requires-Dist: boto3 (>=1.35.92,<2.0.0)
Requires-Dist: cryptography (==44.0.0)
Requires-Dist: pydantic (>=2.10.3,<3.0.0)
Requires-Dist: pyfiglet (==1.0.2)
Requires-Dist: pytest (==8.3.2)
Requires-Dist: pytest-html (==4.1.1)
Requires-Dist: toml (==0.10.2)
Project-URL: Repository, https://github.com/dmberezovskyii/secure-test-automation
Description-Content-Type: text/markdown

# Cipher-test
`Cipher` test is a Python library for encrypting and decrypting passwords, designed for integration with automated testing frameworks such as Selenium, Appium, Playwright, and others. It ensures secure password storage and allows retrieving keys from remote vaults to decrypt configuration files.

## Features

- **Encryption and Decryption**: Encrypt and decrypt passwords using a Fernet key.
- **Key Management**: Support for loading, creating, saving, and deleting encryption keys from a local file.
- **Password Generation**: Generate secure, random passwords of a specified length.
- **Multiple Vault Types**: Currently supports a "local" vault type for file-based key storage.

## Requirements

- Python 3.10 +
- `cryptography` library for encryption/decryption functionality.

Install the required dependencies:

### Local Usage

1. Clone this repository:
   ```bash
   git clone https://github.com/dmberezovskyii/secure-test-automation
   ```
2. Install required dependencies:
   ```bash
   pip install poetry
   poetry shell
   poetry env info
   copy `Executable: path to virtual env` -> Add Interpreter -> Poetry Environment -> Existing environment -> add Executable -> Apply
   poetry install
   ```
### Install Library
   ```bash
   pip install secure-test-automation
   ```
### TODO add documentation usage
