Sample code for 30+ languages & platforms
Dart

Generating Random Password

See more PRNG Examples

Demonstrates how to generate random passwords.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  // This example assumes the Chilkat API to have been previously unlocked.
  // See Global Unlock Sample for sample code.

  final fortuna = CkPrng();

  // Set this equal to true if the generated password must include at least one digit (0-9)
  final bDigit = true;

  // Set this equal to true if the generated password must include both uppercase and lowercase chars.
  final bUpperAndLower = true;

  // The generated password must contain one of the following non-alphanumeric chars.
  final otherChars = '@#\$%*';

  // Exclude chars that appear similar to others:
  final excludeChars = 'iIlLoO0';

  // Generate 8-character passwords:
  for (var i = 1; i <= 10; i++) {
    print(fortuna.randomPassword(8, bDigit, bUpperAndLower, otherChars, excludeChars));
  }
}