Create or check a password?
Generate when no credential exists; validate strength or compare with a stored hash when checking one.
Elysia Tools
Navigation
Workflow Playbook
Generate or validate password credentials and inspect JWT security signals without treating key pairs as passwords.
Hubs
Generate or validate password credentials and inspect JWT security signals without treating key pairs as passwords.
Use this guide to turn the stated scope into a reviewable result. Keep the source, intermediate outputs, and decisions together so the next person can understand what was checked and why.
Use synthetic passwords, hashes, and JWTs rather than production secrets.
Identify whether the task is generation, password verification, token decoding, or security review.
Decision: Create or check a password?. Generate when no credential exists; validate strength or compare with a stored hash when checking one.
Decision: Decode or audit a token?. Decode for header and payload; audit for algorithm, signature, expiry, and sensitive-claim findings.
Decision: Is this a key or TLS task?. Keep private-key generation and certificate inspection outside this password and JWT workflow.
Generate a non-production password candidate. Use password-generator.
Apply the matching password policy validators. Use password-validator, strong-password-validator.
Compare a candidate with a matching derived hash. Use bcrypt-generator, bcrypt-validator, pbkdf2-generator, pbkdf2-validator, scrypt-generator, scrypt-validator.
Create a JWT with known test claims. Use jwt-generator.
Decode structure, then audit security signals. Use jwt-decoder, jwt-decoder-security-auditor.
Workflow playbook
Generate a non-production password candidate.
Apply the matching password policy validators.
Compare a candidate with a matching derived hash.
Create a JWT with known test claims.
Decode structure, then audit security signals.
Generate when no credential exists; validate strength or compare with a stored hash when checking one.
Decode for header and payload; audit for algorithm, signature, expiry, and sensitive-claim findings.
Keep private-key generation and certificate inspection outside this password and JWT workflow.