Upgrading Cryptographic Libraries
Blog post about how to make it easier to upgrade a cryptographic or hashing library.
Django encodes passwords for database storage like this:
<algorithm>$<iterations>$<salt>$<hash>
Interestingly, Giovanni Collazo emphasises that we should design systems for change, which initially seems pretty close to contradicting YAGNI, but the answer lies in the context.