Password Hash Generator

Generate SHA256 password hashes for site protection

This tool generates the SHA256 hash required for password-protecting your Bovine Pages sites.

How to Use

  1. Enter your desired password (or generate a random one)
  2. Click “Generate Hash”
  3. Copy the SHA256 hash to your .pages file
(Recommended: 20 characters)

About Password Protection

Password protection secures your static sites with SHA256-hashed passwords. The system never stores passwords in plaintext—only the secure hash.

Next Steps

After generating your hash:

  1. Add to your .pages file:

    enabled: true
    password: YOUR_GENERATED_HASH_HERE
    
  2. Commit and push:

    git add .pages
    git commit -m "Add password protection"
    git push
    
  3. Wait for cache expiry (up to 60 seconds) or clear manually

  4. Test access by visiting your pages URL

For detailed configuration and troubleshooting, see the Password Protection documentation.