Discovered “salting” — adding unique random data to each password hash. Used Python’s os.urandom () and binascii to generate salts. Switched from .txt to a .json file for structured, safer storage.
gridium/ ├── lessons/ # Educational materials │ ├── 01_pydantic_introduction.md │ └── 02_pydantic_best_practices.md ├── examples/ # Runnable code examples │ ├── 01_pydantic_introduction.py │ └── ...