Generate Password
generate_passwordGenerate cryptographically-random password(s) (keyless, offline, CSPRNG). Control the character sets and length; returns the password(s) and their entropy in bits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | How many to generate (1-50, default 1). | |
| digits | No | Include 0-9 (default true). | |
| length | No | Password length (4-256, default 20). | |
| symbols | No | Include punctuation (default true). | |
| lowercase | No | Include a-z (default true). | |
| uppercase | No | Include A-Z (default true). | |
| exclude_ambiguous | No | Exclude look-alikes (0/O, 1/l/I) (default false). |