Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aigptcode/passwordtoseed
This is a simple Python script that allows users to convert passwords to mnemonic seed phrases and vice versa and restore passwords with seed
https://github.com/aigptcode/passwordtoseed
ai api hash linux microsoft password password-generator password-manager passwords seed windows
Last synced: about 1 month ago
JSON representation
This is a simple Python script that allows users to convert passwords to mnemonic seed phrases and vice versa and restore passwords with seed
- Host: GitHub
- URL: https://github.com/aigptcode/passwordtoseed
- Owner: AiGptCode
- Created: 2024-03-24T20:36:33.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-25T21:02:59.000Z (9 months ago)
- Last Synced: 2024-03-26T21:42:27.497Z (9 months ago)
- Topics: ai, api, hash, linux, microsoft, password, password-generator, password-manager, passwords, seed, windows
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Password to Seed Converter 🌱🔑
This is a simple Python script that allows users to convert passwords to mnemonic seed phrases and vice versa and restore passwords with seed
## 🛠️ Requirements
- Python 3.x 🐍
- pycryptodome (for cryptographic operations) 🔒
- mnemonic (for generating mnemonic phrases) 📝You can install the required packages using pip:
```
pip install pycryptodome mnemonic
```
## 💡 Example```
Do you want to convert password to seed (P) or seed to password (S)? P
Enter your password: ********* (password is hidden)
Password: mysecretpassword
Seed Phrase: road endorse rain fish until offer employ absent hammer ocean pioneer cubeDo you want to convert password to seed (P) or seed to password (S)? S
Enter the seed phrase (12 words): road endorse rain fish until offer employ absent hammer ocean pioneer cube
Retrieved Password: mysecretpassword
```## 📄 License
This project is licensed under the MIT License - see the(LICENSE) file for details.