- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个如下所示的函数,它创建了一个强密码,但它并不总是添加一个特殊字符和一个数字或大写字母,我如何确保它始终包含这些要求。
密码要求是必须的
8 or more characters long and has to have a special character,a capital letter and a number included to it.
下面显示了我现在拥有的功能
function GenPwd(nMinimumLength,bIsRequired,sNameoftheButton){
var end=0;
var index=0;
var sPassCharactersWithoutSpeacil="!#$@*123456789aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ";
var sSpecialCharacters="!#$@*";
var nSrngLen=sStrgStrAddOnChrs
var sNumbers="123456789";
var nMinimunLen=Math.round(nBaseLen/2);
var PassWordDLength=Math.round((Math.random()*nMinLen)+nMinimumLength+nMinimumLength); //Make sure it is atleadt 8 characters long
var Password="";
var PasswordTemporary="";
for(index = 1; index <= PassWordDLength; index++) {
nCharacter = Math.round(Math.random()*65);
PasswordTemporary = sPassCharactersWithoutSpeacil.charAt(nCharacter);
while (PWD.indexOf(PasswordTemporary) > -1) {
nCharacter = '';
nCharacter = Math.round(Math.random()*65);
PasswordTemporary = sPassCharactersWithoutSpeacil.charAt(nChar);
}
FinalPWD = Password + PasswordTemporary;
}
这是我必须要用的
function GenPwd(nBaseLen,bIsStrong,sBtnName){
var end=0;
var index=0;
var sPassStr="!#$@*123456789aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ";
var sStrgStrAddOnChrs="!#$@*";
var nSrngLen=sStrgStrAddOnChrs
var sStrgStrAddOnNum="123456789";
var nMinLen=Math.round(nBaseLen/2);
var PWDLen=Math.round((Math.random()*nMinLen)+nBaseLen);
var PWD="";
var PWDTmp="";
//Generate the password
for(index = 1; index <= PWDLen; index++) {
nChar = Math.round(Math.random()*65);
PWDTmp = sPassStr.charAt(nChar);
while (PWD.indexOf(PWDTmp) > -1) {
nChar = '';
nChar = Math.round(Math.random()*65);
PWDTmp = sPassStr.charAt(nChar);
}
PWD = PWD + PWDTmp;
}
document.getElementById("pwd").value=PWD;
EnableBtn(sBtnName);
return true;
}
最佳答案
您可以创建一个函数来确保您的密码至少包含一组特定字符中的一个:
function ensurePwdContains(pwd, regexListOfChars, listOfChars) {
if (!regexListOfChars.test(pwd)) {
// select random char from listOfChars
var newChar = listOfChars.charAt(Math.floor(Math.random() * listOfChars.length));
// insert it into the current pwd in a random location
// must do +1 to include the location at the end of the string
var pos = Math.floor(Math.random() * (pwd.length + 1));
pwd = pwd.slice(0, pos) + newChar + pwd.slice(pos);
}
return pwd;
}
此函数将测试密码是否至少包含传入的正则表达式的一个实例。如果没有,它将从 listOfChars
参数中选择一个随机字符,然后将其插入现有的随机位置的密码。
然后,对于两种情况,您都在函数末尾调用此函数:
FinalPwd = ensurePwdContains(FinalPwd, /[!#\$@*]/, sSpecialCharacters);
FinalPwd = ensurePwdContains(FinalPwd, /[A-Z]/, "ABCDEFGHIJKLMNOPQRSTUWXYZ");
演示:http://jsfiddle.net/jfriend00/ur9FL/
而且,这是您的整体实现的清理版本。你在你的函数中提到了一些变量,这些变量要么没有在你的帖子中定义,要么没有在你的函数中使用,所以我删除了那些(因为我不知道它们是什么或它们是如何使用的)。这是一个更简洁的实现:
function generatePwd(minLen) {
// create a pwd that is between minLen and ((2 * minLen) + 2) long
// don't repeat any characters
// require at least one special char and one capital char
function rand(max) {
return Math.floor(Math.random() * max);
}
function ensurePwdContains(pwd, regexListOfChars, listOfChars) {
if (!regexListOfChars.test(pwd)) {
var newChar = listOfChars.charAt(rand(listOfChars.length));
var pos = rand(pwd.length + 1);
pwd = pwd.slice(0, pos) + newChar + pwd.slice(pos);
}
return pwd;
}
var legalChars = "!#$@*123456789aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ";
var specialChars = "!#$@*";
var specialRegex = /[!#\$@*]/;
var caps = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var capsRegex = /[A-Z]/;
var nums = "123456789";
var numRegex = /[1-9]/;
// make legalChars into an array of chars (easier to deal with)
legalChars = legalChars.split("");
var pwd = "", len = minLen + rand(minLen), index;
// ensure len is not too long
len = Math.min(legalChars.length, len);
// now add chars to the pwd string until it is of the desired length
while (pwd.length < len) {
index = rand(legalChars.length);
pwd += legalChars[index];
// remove the char we just used
legalChars.splice(index, 1);
}
// ensure we have at least one special character and one caps char and one 1-9
pwd = ensurePwdContains(pwd, specialRegex, specialChars);
pwd = ensurePwdContains(pwd, capsRegex, caps);
pwd = ensurePwdContains(pwd, numRegex, nums);
return pwd;
}
还有一个生成一大堆密码的工作演示,这样你就可以看到你得到的是什么类型的变体:http://jsfiddle.net/jfriend00/7dReY/
为了放置密码,我建议您创建第二个函数来调用第一个函数来生成密码并将其放入选择的字段中:
function putPasswordInPlace(pwdId, sBtnName) {
var pwd = generatePwd(8);
document.getElementById(pwdId).value = pwd;
EnableButton(sBtnName);
}
关于javascript - 使用 javascript 创建强密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24960368/
1、前言 在数字化时代,自动化工具成为了提升工作效率和生产力的重要手段。Python作为一种广泛使用的编程语言,以其强大的功能和易用性受到许多开发者的青睐。 而今天给大家推荐一款开源的自动化脚本工具
我有一个 UIViewController,它引用了一个重复调用闭包的 Timer 对象。 Timer 对象在其 block 中捕获 self。据我所知,这会导致 View Controller 和
在当今软件开发的快速迭代中,接口自动化测试已成为确保代码质量和服务稳定性的关键步骤。 随着微服务架构和分布式系统的广泛应用,对接口自动化测试平台的需求也日益增长。 今天,我将为大家推荐一款强大的开
这个问题在这里已经有了答案: Is Python strongly typed? (13 个答案) 关闭 9 年前。 我了解到 Python 是一种强动态类型的语言。 动态:变量的类型在执行时确定,
想象以下使用手动内存管理(也称为非 ARC)的场景: 我有一个将 block 传递给类方法的 VC。在执行 block 之前,VC 从 UINavigationController 中弹出。 __bl
我已阅读this article关于Java中不同类型的引用(强引用、软引用、弱引用、幻像引用),但我不太理解。 这些引用类型之间有什么区别?每种类型何时使用? 最佳答案 Java 提供了两种不同类型
我需要两个选择器: 一个用于 h2 元素中的普通文本 还有一个用于 strong 标记内的文本 第一个是与: 选择器:'h2.flashHeader' 但是 选择器:'h2.flashHeader S
`我承认我不是 ARC 和保留周期方面的专家,尽管通过一些研究和一些很棒的文章(如 this),我相信我已经掌握了基础知识。 但是,我现在很困惑。我有一个属性定义如下。 @property (nona
就像这是非原子的 COPY 的 Setter @property (copy, nonatomic) NSString *someString; -(void)setSomeString:(NSStr
我有一个按钮的以下操作,它切换一个对象是显示为最喜欢的还是不最喜欢的: - (IBAction)addToFavorites:(UIButton *)sender { if ([object is
这个问题在这里已经有了答案: How to make my font bold using css? (10 个答案) 关闭 3 个月前。 在我网页上的整个文本和标题中,我需要将某些词加粗,而其他词
在我的项目中,我使用了 Storyboard,当我访问一个 UI 元素时,我创建了一个属性并将其链接。这个属性很弱。据我了解,该属性可能很弱,因为它已经添加到 View 中并且 View 保留了它。
我正在寻找有关 TLS/SSL 密码套件强度的信息。 例如,当在 chrome 上按 F12 时,会出现一个包含密码协议(protocol)和套件信息的安全概览选项卡。 Chrome 安全选项卡示例:
我使用 Xcode 中的分析工具(分配)发现的是,当您清零一个属性时,它不会被释放,直到父类被清空。现在假设你想确保你不会在内存中保留一个昂贵的模态视图 Controller (假设它不会经常使用),
下面的 Parent 类具有对单个子对象的强引用和弱引用。永远不会释放子对象。移除弱引用, child 就被释放了。 需要调用 Mirror 方法来进行此泄漏,但我不明白为什么使用 Mirror 会导
1、引言 在当今的互联网时代,API(应用程序编程接口)已经成为连接不同软件系统的桥梁。作为一名开发者,掌握API测试技能至关重要。市面上的API测试工具琳琅满目,今天我们要介绍的是一款开源、跨平台
大家好,我是狂师! 今天给大家推荐一款开源的HTTP测试工具:Hurl,相比curl、wget功能更强大,且更容易上手、很适用新手使用。 1、项目介绍 Hurl是一个使用Rust语言开发的命令行
当我从 Storyboard 控制拖动导出时,默认情况下我得到了 strong 属性。我正在使用 Xcode 9.4.1 .以下代码是它的样子。是不是因为 XCode 与 Swift 兼容,所以在 S
这两个Objective-C声明之间有什么区别? 我一直在看一些Apple源代码示例,他们在各种情况下都使用了第二个示例。我只是想了解为什么和何时最好使用第二个版本而不是第一个版本(我知道 stron
我已经在 AWS Linux 实例上安装了 Strong-pm: [root@box]# npm -g install strongloop strong-pm [root@box]# sl-pm-i
我是一名优秀的程序员,十分优秀!