承接 averay/password-validator 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

averay/password-validator

最新稳定版本:v1.0.0

Composer 安装命令:

composer require averay/password-validator

包简介

An object-oriented wrapper around the password_hash & password_verify functions.

README 文档

README

An object-oriented wrapper around the PHP password_hash & password_verify functions, including an interface for abstraction.

Usage

<?php
$passwordValidator = new \Averay\PasswordValidator\PasswordValidator();

$hash = $passwordValidator->hash('secret value');

if ($passwordValidator->verify('secret value', $hash)) {
  echo '✅ Correct';
} else {
  echo '❌ Incorrect';
}

The algorithm may be customised during instantiation:

<?php
$passwordValidator = new \Averay\PasswordValidator\PasswordValidator(
  \PASSWORD_ARGON2I,
  ['memory_cost' => 2 ^ 32, 'time_cost' => 10],
);

统计信息

  • 总下载量: 259
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-02-23