Download the PHP package niirrty/niirrty.security.password without Composer

On this page you can find all versions of the php package niirrty/niirrty.security.password. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package niirrty.security.password

Niirrty.Security.Password

A little password-security library.

It defines only a single class Niirrty\Security\Password\PasswordSecurityCheck that can be used to check the quality of a password.

Installation

Its a composer package, so you can install it by composer

or inside the composer.json

How it works?

It generates 4 different password quality indicators:

  1. Password Length: Max quality can be reached by using 11 or more characters
  2. Character diversity: The quality in relation to how many different chars are used
  3. Character type diversity: The quality in relation to how many different char types are used (letters-lower, letters-upper, numbers, other)
  4. Known by Top lists: 1 if known by Top 10 password lists, 2 if known by Top 25 password lists and 5 if known by Top 50 password lists, otherwise 10

The check, if a password is inside a password list Top 10/25/50 uses a SQLite DB in Background. The DB defines all unique Top10, Top25 and Top50 passwords, extracted from SecLists password files, excluding spanish and not *.txt files.

Each uses a value between 0 (no security) and 10 (max security)

The lowest value of the 4 indicators will be returned by ->getQuality()

The password self is not stored inside a class instance.

Usage

This is a simple usage example:

will output:

Used abbr. above are:


All versions of niirrty.security.password with dependencies

PHP Build Version
Package Version
Requires niirrty/niirrty.core Version ~0.1
niirrty/niirrty.db Version ~0.1
php Version >=7.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package niirrty/niirrty.security.password contains the following files

Loading the files please wait ....