Password & Passphrase Generator โ€” Bulk avatar

Password & Passphrase Generator โ€” Bulk

Pricing

from $0.00025 / password generated

Go to Apify Store
Password & Passphrase Generator โ€” Bulk

Password & Passphrase Generator โ€” Bulk

Generate cryptographically strong passwords or memorable diceware passphrases in bulk, with entropy scoring. For provisioning credentials and secure secrets at scale.

Pricing

from $0.00025 / password generated

Rating

0.0

(0)

Developer

hiper soft

hiper soft

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

17 hours ago

Last modified

Share

Generate cryptographically strong passwords or memorable diceware passphrases in bulk โ€” with entropy scoring and a strength rating. For provisioning credentials, seeding test data and creating secure secrets at scale.

Password & Passphrase Generator input โ€” configure the options in the Apify Console

What it does

  • Random passwords with configurable length and character sets.
  • Diceware passphrases โ€” memorable word-based secrets (Ocean-Maple-Riot-Coin).
  • Entropy (bits) and a strength rating for each.
  • Option to avoid ambiguous characters (O/0, l/1).

Use cases

  • IT / ops โ€” provision many strong credentials at once.
  • Developers โ€” seed secrets and test fixtures.
  • Anyone โ€” generate strong, unique passwords in bulk.

Input

{ "mode": "password", "count": 20, "length": 16, "symbols": true, "avoidAmbiguous": true }
FieldTypeDescription
modestringpassword or passphrase.
countintegerHow many to generate.
lengthintegerPassword length.
uppercase/lowercase/digits/symbolsbooleanCharacter sets.
avoidAmbiguousbooleanExclude confusable characters.
wordsintegerWords per passphrase.
separatorstringPassphrase word separator.

Output

Password & Passphrase Generator output โ€” the results as a clean dataset

{ "password": "T7q-Rf2xLm9Kd4Wv", "entropyBits": 95, "strength": "very strong", "mode": "password" }

Output schema

FieldTypeDescription
passwordstringThe generated password/passphrase.
entropyBitsintegerEstimated entropy in bits.
strengthstringweak / fair / strong / very strong.

FAQ

Are they secure? Generated with the OS cryptographic RNG (crypto.randomInt).

Can I automate it? Yes โ€” via integrations on the Apify platform and the Apify API.

Notes

Original clean-room implementation.