https://github.com/7836246/phpass-go
便携式 PHP 密码哈希框架 Go实现
https://github.com/7836246/phpass-go
go hash php phpass
Last synced: 5 months ago
JSON representation
便携式 PHP 密码哈希框架 Go实现
- Host: GitHub
- URL: https://github.com/7836246/phpass-go
- Owner: 7836246
- License: gpl-3.0
- Created: 2023-04-10T08:12:55.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-26T23:43:08.000Z (about 2 years ago)
- Last Synced: 2024-06-20T20:32:42.850Z (almost 2 years ago)
- Topics: go, hash, php, phpass
- Language: Go
- Homepage:
- Size: 31.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phpass-go
便携式 PHP 密码哈希框架 Go实现
phpass 支持的首选(最安全)散列方法是 OpenBSD 风格的基于 Blowfish 的bcrypt ,我们的公共域crypt_blowfish包(用于 C 应用程序)也支持它 ,在 PHP 中称为 CRYPT_BLOWFISH,回退到基于 MD5 的加盐以及在 phpass 本身中实现的可变迭代计数密码哈希(也称为可移植哈希)。 (phpass 版本高达 0.4 还包括一个中间回退到 BSDI 样式扩展的基于 DES 的散列,在 PHP 中称为 CRYPT_EXT_DES,但是除了针对这种类型的预先存在的散列进行身份验证之外,这已被删除。)