# aes_tool **Repository Path**: qCwCp/aes_tool ## Basic Information - **Project Name**: aes_tool - **Description**: A simple AES encryption/decryption tool. - ANY file & ANY password supported - Encryption Algorithm: AES-256-CBC - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-13 - **Last Updated**: 2025-05-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # aes_tool A simple AES encryption/decryption tool. - ANY file & ANY password supported - Encryption Algorithm: AES-256-CBC - Source code available at: https://gitee.com/qCwCp/aes_tool ```bash Usage: [1] Encrypt from file: ./aes_tool.exe -e [--del] [2] Decrypt to file: ./aes_tool.exe -d [--del] [3] Encrypt from string: ./aes_tool.exe -es [4] Decrypt to string: ./aes_tool.exe -ds [--del] [5] Show version: ./aes_tool.exe -v [6] Show copyright: ./aes_tool.exe -c [7] Show description: ./aes_tool.exe -s [8] Show help: ./aes_tool.exe -h Add --del to delete the input file after processing. Examples: [1]: ./aes_tool.exe -e input.xlsx output.bin password --del [2]: ./aes_tool.exe -d input.bin output.xlsx password [3]: ./aes_tool.exe -es "Hello, AES-256-CBC!" output.bin password ```