×
About Password Card Generator
🔒 Deterministic Card Generation
This generator creates reproducible password cards. When you provide a seed value, the same card can be regenerated at any time with identical parameters.
- With Seed: Generate the same card every time (save your seed!)
- Without Seed: Generate a unique, random card
- String Seeds: You can use words or phrases as seeds - they are hashed into numbers using your chosen algorithm
- Lost Card? Use your seed, hash algorithm, and settings to regenerate it
💡 Tip: Save your seed, hash algorithm, and all settings from the PDF documentation page for card recovery. The hash algorithm is CRITICAL for string seeds!
🔐 Algorithm Transparency & Audit
This tool is fully open-source. You can review the algorithms and code:
- Card Generation Algorithm: CardCreator.php
- Configuration Logic: Configuration.php
- Seed Hashing: Uses PHP built-in hash() function with selected algorithm
- Random Generation: Uses mt_rand() seeded with your seed value for deterministic results
- Privacy: All generation happens on the server; no seeds are stored
Note: Inspect the code to verify the security and correctness of the implementation.
🔐 Privacy & Local Storage
Your privacy matters:
- Theme and font preferences are stored locally in your browser
- Seeds and card data are NEVER stored - they're only used during generation
- All card generation happens server-side; no data is logged or saved
- Use the "Clear Storage" button below to wipe all locally stored settings
📜 Credits & History
This project is inspired by the original passwordcards project and Qwertycards.com.
This fork has diverged significantly with modernized features, enhanced UI, and new capabilities. It is maintained as an independent project with its own development direction.