passwd_gen 1.1.2 copy "passwd_gen: ^1.1.2" to clipboard
passwd_gen: ^1.1.2 copied to clipboard

It allows to generate passwords and passphrases from different collections of elements. It includes the word list proposed by EFF's

example/example.dart

/*
 * Copyright (c) 2021.  ʕʘ̅͜ʘ̅ʔ
 * Use of this source code is governed by a
 * MIT license that can be found in the LICENSE.
 */

import 'package:passwd_gen/passwd_gen.dart';

/// Generates a 29 character long password with a collection
/// of basic Latin characters.
void main() {
  final generator = PasswordService.latinBase();
  print('Password with length of 29; upper,lower case, numbers, special '
      'characters that are available with UK/US keyboard: ${generator(29)}');
}
1
likes
140
points
51
downloads

Publisher

verified publisherkurdy.ch

Weekly Downloads

It allows to generate passwords and passphrases from different collections of elements. It includes the word list proposed by EFF's

Repository (GitLab)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on passwd_gen