New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

rdpass

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rdpass

自动密码生成器

  • 1.1.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

自动代码生成器!

这个模块用于选择困难症患者自动生成密码或者脚本里面自动生成密码

安装

npm install rdPass --save

使用

import rdPass from 'rdPass';

默认用法

自动生成难度为3(包含数字和大小写字母),长度为6的密码

rdPass

比如生成了W0T8zL

自定义难度

通过第一个参数自定义难度(一共5种难度,输入的数字会对5取余,默认为3)

rdPass 4

比如生成了QNOQ/8

自定义长度

第二个参数会作为密码的长度(长度无限制,此时不可省略第一个参数,默认为6)

rdPass 4 12

比如生成了zO9YC+YDU4Rn

参数说明

第一个参数为难度参数

一共提供了5种难度,输入的数字会对5取余,所以可以输入任意正整数。其中0对应着最高难度5。难度解释:

难度包含的字符
难度10, 1, 2, 3, 4, 5, 6, 7, 8, 9
难度2'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'
难度3'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'
难度4',', '.', '_', '-', '=', '+', '/', '*'
难度5'"', "'", '[', ']', '{', '}', '
每一级难度会包含本级别以及低于本级别的所有字符。

长度说明

第二个参数为密码长度。长度没有限制,会对输入的值取整取绝对值。在有第二个参数的情况下不能省略第一个参数。

FAQs

Package last updated on 30 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc