我已经构建了一个密码生成器:
Public Function PassGen()
Dim pool As String = "0123456789abcdefghijklmnopqrstuvwxzyABCDEFGHIJKLMNOPQRSTUVWXYZ+@*#%&/()?!$-"
Dim rnd As New Random
Dim result As String
Dim i As Integer = 0
Do Until i = 10
result &= pool(rnd.Next(0, pool.Le
我正在尝试检查用户是否创建了包含符号(包括+、-、=符号)或/和数字的密码。我该怎么做呢?
function check_password($str)
{
if (!preg_match ("/[&@<>%\*\,\^!#$%().]/i", $str))
{
$this->form_validation->set_message('check_password', 'Your password should contain a number,letter,and special char
我试图优化我的网站我的wordpress网页,当我检查我的可湿性粉剂页面大小,从总数900KB - 400KB是zxcvbn.min.js我了解到,这个脚本是用来确保密码是强大的,但我不需要它。 我试过这个页面上的推荐,但对我不起作用-- disable zxcvbn.min.js in wordpress and woocommerce