Tarsolution engineering tools
UUID and Password Generator

Generate RFC4122 UUIDs. Choose version 4 for random IDs or version 1 for time/node-based identifiers.

Values cap at 100 per request to prevent clipboard overload.

Result stream

Generation details

• UUID tab runs Python's `uuid.uuid4()` or `uuid.uuid1()` depending on the version selected. • Password tab builds an alphabet from the chosen checkboxes, then draws characters with `secrets.choice` to stay cryptographically strong. • Tabs keep the workflows separate so you don't have to scroll past unused inputs.

Common uses

• Provisioning device IDs during rollouts. • Issuing temporary passwords to field technicians. • Generating API keys for lab environments.