Fernet crypto

Comment

Author: Admin | 2025-04-28

NHashNHash is a Python-based command-line tool that provides secure text encryption and decryption using various encryption methods. It supports multiple encryption techniques, including Fernet, PBKDF2, RSA, and AES. This tool is designed to help users protect their sensitive text data with strong encryption algorithms.FeaturesMultiple Encryption Methods: NHash offers a choice of encryption methods, allowing you to select the most suitable one for your needs.Strong Encryption: All encryption methods provided by NHash use strong cryptographic algorithms to ensure the security of your data.Easy-to-Use Command Line Interface: NHash provides a simple and intuitive command-line interface (CLI) that makes it easy for users to encrypt and decrypt text.Table of ContentsInstallationPrerequisitesInstallation StepsUsageEncrypting TextFernet EncryptionPBKDF2 EncryptionRSA EncryptionAES EncryptionDecrypting TextFernet DecryptionPBKDF2 DecryptionRSA DecryptionAES DecryptionContributingLicenseInstallationPre-RequisitesBefore you can use NHash, ensure you have the following prerequisites installed:Python (version 3.6 or higher)pip (Python package manager)Installation StepsClone this repository to your local machine:git clone https://github.com/yourusername/NHash.gitNavigate to the project directory:Install the required dependencies:pip install -r requirements.txtRun NHash !UsagesNHash provides two main commands: encrypt and decrypt. You can choose from different encryption methods and provide the required input and options as needed.EncryptingFarnet Encryptionpython3 NHash.py encrypt -m fernet -t "Your sensitive text" -o encrypted.txtAES Encryptionpython3 NHash.py decrypt -m aes -i encrypted.txt -k aes_key.key -iv iv_aes.keyDecryptingFarnet Decryptionpython3 NHash.py decrypt -m fernet -i encrypted.txtAES Decryptionpython NHash.py decrypt -m aes -i encrypted.txt -k aes_key.key -iv iv_aes.keyContributingIf you'd like to contribute to NHash or report issues, please check our contribution guidelines. and Thanks ..

Add Comment