cipher-craftt


Namecipher-craftt JSON
Version 0.1.18 PyPI version JSON
download
home_pagehttps://github.com/jarvismayur/ciphercraft
SummaryA comprehensive tool for password management including generation, strength checking, expiry tracking, and secure sharing.
upload_time2024-09-03 04:52:53
maintainerNone
docs_urlNone
authorMayur Tembhare
requires_python>=3.6
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # CipherCraft
CipherCraft is a versatile and secure password generator designed to help you create strong, memorable passwords with ease. With a range of customizable features and unique tools, CipherCraft ensures your passwords are not only secure but also tailored to your needs.

- For detailed documentation and usage instructions, please visit our [Read the Docs page](https://cipher-craftt.readthedocs.io).
- You can also explore the source code and contribute to the project on our [GitHub repository](https://github.com/jarvismayur/cipher-craftt).

## Features
CipherCraft offers a wide range of features to help you securely generate, manage, and share passwords and passphrases:

1. **Password and Passphrase Generation**
- **Random Password Generator**: Generate strong, random passwords with customizable options such as length, inclusion/exclusion of uppercase letters, lowercase letters, digits, and special characters.
- **Context-Aware Password Generator**: Generate passwords tailored to specific contexts, such as finance, social media, or work environments.
- **Mnemonic Password Generator**: Create mnemonic-based passwords using a custom wordlist, making them easier to remember.
- **Passphrase Generator**: Generate secure passphrases composed of random words from a user-defined wordlist, with customizable separators.
2. **Password Strength and Entropy**
- **Password Strength Checker**: Evaluate the strength of a given password to ensure its robustness against attacks.
- **Entropy Calculator**: Calculate the entropy of a password, giving you an indication of its unpredictability and security level.
3. **Password History Management**
- **Password History Checker**: Verify if a password has been used before, helping to prevent reuse of old passwords.
- **Password Expiry Checker**: Check if a password has expired based on a specified number of days.
- **Password Creation Recorder**: Record the creation date of a new password for tracking and expiry purposes.
- **Limit Password History**: Set a limit on the number of stored passwords in history to maintain a clean and secure password management process.
4. **Obfuscation and Pronunciation Guide**
- **Password Obfuscator**: Obfuscate your password to different levels (1, 2, or 3) for enhanced security.
- **Pronunciation Guide**: Generate a pronunciation guide for a given password to make it easier to recall.
5. **Secure Sharing and Breach Detection**
- **Secure Password Sharing**: Encrypt and securely share passwords using a generated key.
- **Password Decryption**: Decrypt a shared password using the provided key.
- **Data Breach Checker**: Check if your password has been involved in any known data breaches, ensuring its safety.
6. **Time-Based One-Time Password (TOTP)**
- **TOTP Generation**: Generate a Time-Based One-Time Password (TOTP) using a provided secret, for use in two-factor authentication.
- **TOTP Verification**: Verify the validity of a TOTP using the provided secret and OTP.
7. **Advanced Customization**
- **Salting**: Apply passphrase-based salting to generated passwords for added security.
- **Personalization**: Incorporate personalized inputs (e.g., names, favorite numbers) into password generation for more tailored security.
- **Common Words Filtering**: Exclude common words from the password using a custom dictionary file to enhance password security.

  
## Installation
You can install CipherCraft via PyPI:

```bash
pip install cipher-craftt
```

## Updating the Package
To ensure you have the latest features and improvements, you can easily update the CipherCraft package using pip. Open your command line interface and run the following command:

```bash
pip install --upgrade cipher-craftt
```
This command will update your CipherCraft package to the latest version available on [PyPI](https://pypi.org/project/cipher-craftt/).

## Basic Usage
To use the CLI, run the following command:

```bash
python cli.py [options]
```
## Available Options
1. **Password Generation**
- `--generate-password`: Generates a random password.

```bash
python cli.py --generate-password
```
Options:

- `-l, --length`: Length of the generated password (default: 12).
- `-u, --no-upper`: Exclude uppercase letters.
- `-lo, --no-lower`: Exclude lowercase letters.
- `-d, --no-digits`: Exclude digits.
- `-s, --no-special`: Exclude special characters.
- `--exclude-chars`: Characters to exclude from the password.
- `--min-digits`: Minimum number of digits required (default: 0).
- `--min-special`: Minimum number of special characters required (default: 0).
- `--salting`: Apply passphrase-based salting to the password.
- `--personalization`: Personalized input to include in the password.
- `--file_path`: Path to a file containing common words (e.g., common_words.txt).
- `--obfuscate`: Apply obfuscation to the password (level 1, 2, or 3).

2. **Passphrase Generation**
-  `--generate-passphrase`: Generates a passphrase based on a word list.

```bash
python cli.py --generate-passphrase 
```
Options:

- `--num-words`: Number of words in the passphrase (default: 4).
- `--separator`: Separator between words in the passphrase (default: '-').
- `--obfuscate`: Apply obfuscation to the passphrase (level 1, 2, or 3).
- `--wordlist` : Your custom wordlist can also be used.
- `--language`: Multiple language wordlist available.
  - `da` : Danish
  - `de` : German
  - `en` : Enlish ( default )
  - `es` : Spanish 
  - `fr` : French
  - `it` : Italian
  - `nl` : Dutch 
  - `no` : Norwegian 
  - `pl` : Polish 
  - `pt` : Portuguese 
  - `sv` : Swedish 
  - `tr` : Turkish 

1. **Password Entropy**
- `--calculate-entropy`: Calculate the entropy of a given password.

```bash
python cli.py --calculate-entropy your_password
```
4. **Password Expiry Check**
- `--check-expiry`: Check if a password has expired.

```bash
python cli.py --check-expiry your_password
```
Options:

- `--expiry-days`: Number of days before a password expires (default: 90).
5. **Password History Management**
- `--record-password`: Record the creation date of a new password.

```bash
python cli.py --record-password your_password
```
- `--check-history`: Check if a password has been used before.

```bash
python cli.py --check-history your_password
```
- `--max-history`: Limit the number of stored passwords in history.

```bash
python cli.py --max-history 100
```
6. **Data Breach Check**
- `--check-breach`: Check if a password has been involved in a data breach.

```bash
python cli.py --check-breach your_password
```
7. **Secure Password Sharing**
- `--share-password`: Encrypt and share a password securely.

```bash
python cli.py --share-password your_password
```
- `--decrypt-password`: Decrypt a shared password.

```bash
python cli.py --decrypt-password encrypted_password key
```
8. **Pronunciation Guide**
- `--pronunciation-guide`: Generate a pronunciation guide for a password.

```bash
python cli.py --pronunciation-guide your_password
```
9. **Password Strength Check**
- `--check-strength`: Check the strength of the given password.

```bash
python cli.py --check-strength your_password
```
10. **Mnemonic Password Generation**
- `--generate-mnemonic`: Generate a mnemonic-based password.

```bash
python cli.py --generate-mnemonic --wordlist path/to/wordlist.txt
```
Options:

- `--num-words`: Number of words in the mnemonic password (default: 4).
- `--separator`: Separator between words in the mnemonic password (default: '-').
- `--length`: Length of the mnemonic password.
11. **Context-Aware Password Generation**
- `--context`: Specify the context for the password generation (e.g., finance, social, work).

```bash
python cli.py --generate-password --context finance
```
12. TOTP (Time-based One-Time Password)
- `--generate-totp`: Generate a TOTP using the provided secret.

```bash
python cli.py --generate-totp your_secret
```
- `--verify-totp`: Verify a TOTP using the provided secret and OTP.

```bash
python cli.py --verify-totp your_secret your_otp
```
## Examples
- Generate a password with specific constraints:

```bash
python cli.py --generate-password -l 16 --no-special --min-digits 2 --personalization "MySecret!"
```
- Generate a passphrase with a custom word list and separator:

```bash
python cli.py --generate-passphrase --wordlist path/to/wordlist.txt --separator "_"
```
- Check if a password has expired:

```bash
python cli.py --check-expiry your_password --expiry-days 60
```
- Encrypt and share a password securely:

```bash
python cli.py --share-password your_password
```
- Generate a TOTP:

```bash
python cli.py --generate-totp your_secret
```


## License
CipherCraft is licensed under the MIT [License](https://github.com/jarvismayur/Cipher_Craftt/blob/main/LICENSE). See the LICENSE file for details.

## Contact and Issues
If you have any questions, suggestions, or encounter issues, please feel free to [open an issue](https://github.com/yourusername/cipher-craftt/issues) on the GitHub repository. For direct communication, you can reach out to Mayur Tembhare via [email](mailto:tembharemayur@gmail.com) .

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jarvismayur/ciphercraft",
    "name": "cipher-craftt",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": null,
    "author": "Mayur Tembhare",
    "author_email": "tembharemayur@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/1e/8e/1f5dd40662202d9174a492b030575ced444776960f197ebfe7e0b1ae32cc/cipher-craftt-0.1.18.tar.gz",
    "platform": null,
    "description": "# CipherCraft\r\nCipherCraft is a versatile and secure password generator designed to help you create strong, memorable passwords with ease. With a range of customizable features and unique tools, CipherCraft ensures your passwords are not only secure but also tailored to your needs.\r\n\r\n- For detailed documentation and usage instructions, please visit our [Read the Docs page](https://cipher-craftt.readthedocs.io).\r\n- You can also explore the source code and contribute to the project on our [GitHub repository](https://github.com/jarvismayur/cipher-craftt).\r\n\r\n## Features\r\nCipherCraft offers a wide range of features to help you securely generate, manage, and share passwords and passphrases:\r\n\r\n1. **Password and Passphrase Generation**\r\n- **Random Password Generator**: Generate strong, random passwords with customizable options such as length, inclusion/exclusion of uppercase letters, lowercase letters, digits, and special characters.\r\n- **Context-Aware Password Generator**: Generate passwords tailored to specific contexts, such as finance, social media, or work environments.\r\n- **Mnemonic Password Generator**: Create mnemonic-based passwords using a custom wordlist, making them easier to remember.\r\n- **Passphrase Generator**: Generate secure passphrases composed of random words from a user-defined wordlist, with customizable separators.\r\n2. **Password Strength and Entropy**\r\n- **Password Strength Checker**: Evaluate the strength of a given password to ensure its robustness against attacks.\r\n- **Entropy Calculator**: Calculate the entropy of a password, giving you an indication of its unpredictability and security level.\r\n3. **Password History Management**\r\n- **Password History Checker**: Verify if a password has been used before, helping to prevent reuse of old passwords.\r\n- **Password Expiry Checker**: Check if a password has expired based on a specified number of days.\r\n- **Password Creation Recorder**: Record the creation date of a new password for tracking and expiry purposes.\r\n- **Limit Password History**: Set a limit on the number of stored passwords in history to maintain a clean and secure password management process.\r\n4. **Obfuscation and Pronunciation Guide**\r\n- **Password Obfuscator**: Obfuscate your password to different levels (1, 2, or 3) for enhanced security.\r\n- **Pronunciation Guide**: Generate a pronunciation guide for a given password to make it easier to recall.\r\n5. **Secure Sharing and Breach Detection**\r\n- **Secure Password Sharing**: Encrypt and securely share passwords using a generated key.\r\n- **Password Decryption**: Decrypt a shared password using the provided key.\r\n- **Data Breach Checker**: Check if your password has been involved in any known data breaches, ensuring its safety.\r\n6. **Time-Based One-Time Password (TOTP)**\r\n- **TOTP Generation**: Generate a Time-Based One-Time Password (TOTP) using a provided secret, for use in two-factor authentication.\r\n- **TOTP Verification**: Verify the validity of a TOTP using the provided secret and OTP.\r\n7. **Advanced Customization**\r\n- **Salting**: Apply passphrase-based salting to generated passwords for added security.\r\n- **Personalization**: Incorporate personalized inputs (e.g., names, favorite numbers) into password generation for more tailored security.\r\n- **Common Words Filtering**: Exclude common words from the password using a custom dictionary file to enhance password security.\r\n\r\n  \r\n## Installation\r\nYou can install CipherCraft via PyPI:\r\n\r\n```bash\r\npip install cipher-craftt\r\n```\r\n\r\n## Updating the Package\r\nTo ensure you have the latest features and improvements, you can easily update the CipherCraft package using pip. Open your command line interface and run the following command:\r\n\r\n```bash\r\npip install --upgrade cipher-craftt\r\n```\r\nThis command will update your CipherCraft package to the latest version available on [PyPI](https://pypi.org/project/cipher-craftt/).\r\n\r\n## Basic Usage\r\nTo use the CLI, run the following command:\r\n\r\n```bash\r\npython cli.py [options]\r\n```\r\n## Available Options\r\n1. **Password Generation**\r\n- `--generate-password`: Generates a random password.\r\n\r\n```bash\r\npython cli.py --generate-password\r\n```\r\nOptions:\r\n\r\n- `-l, --length`: Length of the generated password (default: 12).\r\n- `-u, --no-upper`: Exclude uppercase letters.\r\n- `-lo, --no-lower`: Exclude lowercase letters.\r\n- `-d, --no-digits`: Exclude digits.\r\n- `-s, --no-special`: Exclude special characters.\r\n- `--exclude-chars`: Characters to exclude from the password.\r\n- `--min-digits`: Minimum number of digits required (default: 0).\r\n- `--min-special`: Minimum number of special characters required (default: 0).\r\n- `--salting`: Apply passphrase-based salting to the password.\r\n- `--personalization`: Personalized input to include in the password.\r\n- `--file_path`: Path to a file containing common words (e.g., common_words.txt).\r\n- `--obfuscate`: Apply obfuscation to the password (level 1, 2, or 3).\r\n\r\n2. **Passphrase Generation**\r\n-  `--generate-passphrase`: Generates a passphrase based on a word list.\r\n\r\n```bash\r\npython cli.py --generate-passphrase \r\n```\r\nOptions:\r\n\r\n- `--num-words`: Number of words in the passphrase (default: 4).\r\n- `--separator`: Separator between words in the passphrase (default: '-').\r\n- `--obfuscate`: Apply obfuscation to the passphrase (level 1, 2, or 3).\r\n- `--wordlist` : Your custom wordlist can also be used.\r\n- `--language`: Multiple language wordlist available.\r\n  - `da` : Danish\r\n  - `de` : German\r\n  - `en` : Enlish ( default )\r\n  - `es` : Spanish \r\n  - `fr` : French\r\n  - `it` : Italian\r\n  - `nl` : Dutch \r\n  - `no` : Norwegian \r\n  - `pl` : Polish \r\n  - `pt` : Portuguese \r\n  - `sv` : Swedish \r\n  - `tr` : Turkish \r\n\r\n1. **Password Entropy**\r\n- `--calculate-entropy`: Calculate the entropy of a given password.\r\n\r\n```bash\r\npython cli.py --calculate-entropy your_password\r\n```\r\n4. **Password Expiry Check**\r\n- `--check-expiry`: Check if a password has expired.\r\n\r\n```bash\r\npython cli.py --check-expiry your_password\r\n```\r\nOptions:\r\n\r\n- `--expiry-days`: Number of days before a password expires (default: 90).\r\n5. **Password History Management**\r\n- `--record-password`: Record the creation date of a new password.\r\n\r\n```bash\r\npython cli.py --record-password your_password\r\n```\r\n- `--check-history`: Check if a password has been used before.\r\n\r\n```bash\r\npython cli.py --check-history your_password\r\n```\r\n- `--max-history`: Limit the number of stored passwords in history.\r\n\r\n```bash\r\npython cli.py --max-history 100\r\n```\r\n6. **Data Breach Check**\r\n- `--check-breach`: Check if a password has been involved in a data breach.\r\n\r\n```bash\r\npython cli.py --check-breach your_password\r\n```\r\n7. **Secure Password Sharing**\r\n- `--share-password`: Encrypt and share a password securely.\r\n\r\n```bash\r\npython cli.py --share-password your_password\r\n```\r\n- `--decrypt-password`: Decrypt a shared password.\r\n\r\n```bash\r\npython cli.py --decrypt-password encrypted_password key\r\n```\r\n8. **Pronunciation Guide**\r\n- `--pronunciation-guide`: Generate a pronunciation guide for a password.\r\n\r\n```bash\r\npython cli.py --pronunciation-guide your_password\r\n```\r\n9. **Password Strength Check**\r\n- `--check-strength`: Check the strength of the given password.\r\n\r\n```bash\r\npython cli.py --check-strength your_password\r\n```\r\n10. **Mnemonic Password Generation**\r\n- `--generate-mnemonic`: Generate a mnemonic-based password.\r\n\r\n```bash\r\npython cli.py --generate-mnemonic --wordlist path/to/wordlist.txt\r\n```\r\nOptions:\r\n\r\n- `--num-words`: Number of words in the mnemonic password (default: 4).\r\n- `--separator`: Separator between words in the mnemonic password (default: '-').\r\n- `--length`: Length of the mnemonic password.\r\n11. **Context-Aware Password Generation**\r\n- `--context`: Specify the context for the password generation (e.g., finance, social, work).\r\n\r\n```bash\r\npython cli.py --generate-password --context finance\r\n```\r\n12. TOTP (Time-based One-Time Password)\r\n- `--generate-totp`: Generate a TOTP using the provided secret.\r\n\r\n```bash\r\npython cli.py --generate-totp your_secret\r\n```\r\n- `--verify-totp`: Verify a TOTP using the provided secret and OTP.\r\n\r\n```bash\r\npython cli.py --verify-totp your_secret your_otp\r\n```\r\n## Examples\r\n- Generate a password with specific constraints:\r\n\r\n```bash\r\npython cli.py --generate-password -l 16 --no-special --min-digits 2 --personalization \"MySecret!\"\r\n```\r\n- Generate a passphrase with a custom word list and separator:\r\n\r\n```bash\r\npython cli.py --generate-passphrase --wordlist path/to/wordlist.txt --separator \"_\"\r\n```\r\n- Check if a password has expired:\r\n\r\n```bash\r\npython cli.py --check-expiry your_password --expiry-days 60\r\n```\r\n- Encrypt and share a password securely:\r\n\r\n```bash\r\npython cli.py --share-password your_password\r\n```\r\n- Generate a TOTP:\r\n\r\n```bash\r\npython cli.py --generate-totp your_secret\r\n```\r\n\r\n\r\n## License\r\nCipherCraft is licensed under the MIT [License](https://github.com/jarvismayur/Cipher_Craftt/blob/main/LICENSE). See the LICENSE file for details.\r\n\r\n## Contact and Issues\r\nIf you have any questions, suggestions, or encounter issues, please feel free to [open an issue](https://github.com/yourusername/cipher-craftt/issues) on the GitHub repository. For direct communication, you can reach out to Mayur Tembhare via [email](mailto:tembharemayur@gmail.com) .\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A comprehensive tool for password management including generation, strength checking, expiry tracking, and secure sharing.",
    "version": "0.1.18",
    "project_urls": {
        "Homepage": "https://github.com/jarvismayur/ciphercraft"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a3e6bfdbb095ceb5a4e86ed76938d081796d67378726322c937d0f0454839a4",
                "md5": "aef95316d58ba3363de81a11526257aa",
                "sha256": "2e21243425a52b69bf4626fc4f6613749a5bf770316943dfd0b2c564960c8d41"
            },
            "downloads": -1,
            "filename": "cipher_craftt-0.1.18-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "aef95316d58ba3363de81a11526257aa",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 21231350,
            "upload_time": "2024-09-03T04:52:46",
            "upload_time_iso_8601": "2024-09-03T04:52:46.040124Z",
            "url": "https://files.pythonhosted.org/packages/3a/3e/6bfdbb095ceb5a4e86ed76938d081796d67378726322c937d0f0454839a4/cipher_craftt-0.1.18-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e8e1f5dd40662202d9174a492b030575ced444776960f197ebfe7e0b1ae32cc",
                "md5": "05c79ab44a76616e2592c9488a54a341",
                "sha256": "8fe381495779900c46931d6970b943f316763fd85f3861785750baf21334dea1"
            },
            "downloads": -1,
            "filename": "cipher-craftt-0.1.18.tar.gz",
            "has_sig": false,
            "md5_digest": "05c79ab44a76616e2592c9488a54a341",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 21320011,
            "upload_time": "2024-09-03T04:52:53",
            "upload_time_iso_8601": "2024-09-03T04:52:53.551377Z",
            "url": "https://files.pythonhosted.org/packages/1e/8e/1f5dd40662202d9174a492b030575ced444776960f197ebfe7e0b1ae32cc/cipher-craftt-0.1.18.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-03 04:52:53",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jarvismayur",
    "github_project": "ciphercraft",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "cipher-craftt"
}
        
Elapsed time: 0.68813s