2017 © Pedro Peláez
 

wordpress-plugin acf-encrypted-password

A simple ACF field to use in place of the default Password field to encrypt the password stored in the database using PHP 5.5's password_hash.

image

log1x/acf-encrypted-password

A simple ACF field to use in place of the default Password field to encrypt the password stored in the database using PHP 5.5's password_hash.

  • Sunday, September 3, 2017
  • by Log1x
  • Repository
  • 1 Watchers
  • 1 Stars
  • 39 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

ACF Encrypted Password

Packagist Packagist Downloads, (*1)

This is a simple ACF field to use in place of the default Password field to encrypt the password stored in the database using PHP 5.5's password_hash() function., (*2)

Requirements

  • PHP >= 7
  • ACF >= 5

Installation

$ composer require log1x/acf-encrypted-password

Usage

You can verify the password using PHP 5.5's password_verify() function like so:, (*3)

$input = $_GET['password'];
$hash  = get_field('password');

if (password_verify($input, $hash)) {
  echo 'Correct';
} else {
  echo 'Incorrect';
}

The Versions

03/09 2017

dev-master

9999999-dev https://github.com/log1x/acf-encrypted-password

A simple ACF field to use in place of the default Password field to encrypt the password stored in the database using PHP 5.5's password_hash.

  Sources   Download

MIT

The Requires

 

The Development Requires

wordpress

03/09 2017

v1.0.2

1.0.2.0 https://github.com/log1x/acf-encrypted-password

A simple ACF field to use in place of the default Password field to encrypt the password stored in the database using PHP 5.5's password_hash.

  Sources   Download

MIT

The Requires

 

The Development Requires

wordpress

03/09 2017

v1.0.1

1.0.1.0 https://github.com/log1x/acf-encrypted-password

A simple ACF field to use in place of the default Password field to encrypt the password stored in the database using PHP 5.5's password_hash.

  Sources   Download

MIT

The Requires

 

The Development Requires

wordpress

02/09 2017

v1.0.0

1.0.0.0 https://github.com/log1x/acf-encrypted-password

A simple ACF field to use in place of the default Password field to encrypt the password stored in the database using PHP 5.5's password_hash.

  Sources   Download

MIT

The Requires

 

The Development Requires

wordpress