cypher 2.0.0 copy "cypher: ^2.0.0" to clipboard
cypher: ^2.0.0 copied to clipboard

A new Flutter plugin to generate passwords which can contain digits, lower case letters, upper case letters and punctuations.

example/lib/main.dart

import 'package:cypher/cypher.dart';

void main(List<String> args) {
  final password = Cypher.create(
    length: 12,
    useDigits: true,
    useLowerCase: true,
    usePunctuation: true,
    useUpperCase: true,
  );

  print(password);
}
3
likes
0
points
16
downloads

Publisher

verified publishersaktepe.com

Weekly Downloads

A new Flutter plugin to generate passwords which can contain digits, lower case letters, upper case letters and punctuations.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on cypher