Password Generator Actor avatar
Password Generator Actor

Pricing

Pay per usage

Go to Apify Store
Password Generator Actor

Password Generator Actor

Simple password generator actor written in Rust

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Patrik Dvořáček

Patrik Dvořáček

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

4 days ago

Last modified

Share

The Password Generator Actor is a simple actor for generating random passwords. The actor is just a wrapper around the passwords Rust crate.

The generator is pre-made for generating multiple passwords at once. However, it is possible to create a single password as well by setting count to 1.

Input Parameters

ParametersTypeRequiredDescription
countnumberYesThe number of passwords to create
lengthnumberYesThe length of the password. Must be between 8 and 128
allow_numbersboolNoInclude numbers in the password
allow_lowercase_lettersboolNoInclude lowercase letters in the password
allow_uppercase_lettersboolNoInclude uppercase letters in the password
symbolsboolNoInclude symbols such as *, # or $ in the password
spacesboolNoInclude spaces in the password
exclude_similar_charactersboolNoExclude visually similar characters such as 1 (one) and l (L) from appearing in the password at the same time

Output Format

The output is a JSON array of strings. Each string represents a single password.