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

21 days 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.