Skip to main content
CaseSwitch

Random generators

Passwords, UUIDs, raffle picks, and dummy dates using the browser CSPRNG when available. These are utilities, not certified lottery machines.

About random generators

Store passwords in a manager. UUIDv4 is an identifier, not a login secret. Random IPs are syntax examples — prefer documentation ranges like 192.0.2.0/24 when teaching.

For a giveaway, publish your method. A webpage draw is fine for a classroom; high-stakes prizes need a process your audience trusts.

Frequently asked questions

Are generated passwords sent to CaseSwitch?+

No. Values are created with crypto.getRandomValues() when the browser supports it. Copy them into a password manager; we do not store them.

Related guides