securitycheck 1.1.0 copy "securitycheck: ^1.1.0" to clipboard
securitycheck: ^1.1.0 copied to clipboard

outdated

A library to check whether your passwords are secure and strong.

example/example.md

EXAMPLE FOR SECURITY CHECK #

Here's the example's pubspec.yaml:

name: test
description: A test app for Security Check!
version: 1.0.0
publish_to: none
homepage: https://github.com/iamtheblackunicorn/securitycheck
environment:
  sdk: '>=2.12.0 <3.0.0'
dependencies:
  securitycheck:
    git: git://github.com/iamtheblackunicorn/securitycheck.git

Here's the example itself:

/*
// Security Check by Alexander Abraham, The Black Unicorn.
// Licensed under the MIT license.

void main(){

  // Your password as a string.
  String myPassword = 'mynameisjesus7509__@+';

  // An integer representation of how secure your password is.
  String myPasswordRating = passwordStrength(myPassword).toString();

  // A boolean representation of whether your password is strong.
  String myPasswordIsStrong = isSecure(myPassword).toString();

  // Prints a number from one to ten.
  print(myPasswordRating);

  //Prints either true or false.
  print(myPasswordIsStrong);

}
*/

import 'package:securitycheck/securitycheck.dart';

void main() {
  testPwdMethods();
  testCharMethods();
}
1
likes
0
pub points
0%
popularity

Publisher

verified publisherblckunicorn.art

A library to check whether your passwords are secure and strong.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on securitycheck