Implements part of #1 (configurable security tiers)
Changes to storage.py
- Update initialize() to accept tier parameter
- Generate and store salt for non-standard tiers
- Bump .secrets version to 1.1
- Add get_security_tier() method
- Add get_salt() method
- Add create_crypto() convenience method that builds ZeroEnvCrypto with correct tier/salt
- Add get_project_info() method for the info command
Testing
- Standard tier does not store salt
- Enhanced/paranoid tiers store salt
- create_crypto() returns correctly configured instance
- Backward compatible with v1.0 files (defaults to standard tier)
Implements part of #1 (configurable security tiers)
Changes to storage.py
Testing