文件名称:xpasswd:xpasswd - 用于消化和验证密码的库
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-19 12:47:09
JavaScript
xpasswd - 用于消化和验证密码的库 xpasswd实现了类似于 UNIX passwd 文件的版本化密码摘要方案。 默认摘要版本配置在xpasswd.definitions对象中定义。 您可以使用自己的定义安全地覆盖此对象。 用法 import { digest , validate } from "./xpasswd" ; // digest "xyzzy" and log the result from the returned Promise digest ( "xyzzy" ) . then ( function ( key ) { console . log ( key ) ; // use Promise chaining to validate the password return validate ( "xyzzy" , key ) ; } ) .
【文件预览】:
xpasswd-master
----HISTORY.md(60B)
----package.json(295B)
----xpasswd_test.js(498B)
----.gitignore(13B)
----README.md(675B)
----xpasswd.js(3KB)