-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRandomPassword.js
More file actions
89 lines (82 loc) · 3.68 KB
/
Copy pathRandomPassword.js
File metadata and controls
89 lines (82 loc) · 3.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
"use strict";
var password = "";
var passwordLength, arrayOfCharacters, spotForUL, spotForLL, spotForNu, spotForSy, theArrayToUse;
var character = "Error";
var minLength = 15;
var maxLength = 15;
const arrayOfLowercaseLetters = ["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"];
const arrayOfUppercaseLetters = ["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"];
const arrayOfNumbers = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
const arrayOfSymbols = ["+", "/", "!", "#", "$", "^", "?", ",", "^", "?", ",", "(", ")", "{", "}", "[", "]", "~", "-", "_", "."];
function GenerateRandomPassword() {
spotForLL = undefined;
spotForUL = undefined;
spotForNu = undefined;
spotForSy = undefined;
if(textboxLengthOfPassword.value > 0) passwordLength = Math.ceil(textboxLengthOfPassword.value);
arrayOfCharacters = [];
if(checkboxRUL.checked) addUppercaseLetters();
if(checkboxRLL.checked) addLowercaseLetters();
if(checkboxRN.checked) addNumbers();
if(checkboxRS.checked) addSymbols();
password = "";
var charactersUnclaimed = passwordLength;
if(checkboxRUL.checked) {
spotForUL = Math.floor(Math.random()*charactersUnclaimed);
charactersUnclaimed--;
}
if(checkboxRLL.checked) {
spotForLL = Math.floor(Math.random()*charactersUnclaimed);
if(spotForLL >= spotForUL) spotForLL++;
charactersUnclaimed--;
}
if(checkboxRN.checked) {
spotForNu = Math.floor(Math.random()*charactersUnclaimed);
if(spotForNu >= spotForUL || spotForNu >= spotForLL) spotForNu++;
if(spotForNu >= spotForUL && spotForNu >= spotForLL) spotForNu++;
charactersUnclaimed--;
}
if(checkboxRS.checked) {
spotForSy = Math.floor(Math.random()*charactersUnclaimed);
if(spotForSy >= spotForUL || spotForSy >= spotForLL || spotForSy >= spotForNu) spotForSy++;
if(spotForSy >= spotForUL && (spotForSy >= spotForLL || spotForSy >= spotForNu) || (spotForSy >= spotForLL && spotForSy >= spotForNu)) spotForSy++;
if(spotForSy >= spotForUL && spotForSy >= spotForLL && spotForSy >= spotForNu) spotForSy++;
}
for (var i = 0; i < passwordLength; i++) {
theArrayToUse = arrayOfCharacters;
if(i===spotForUL){theArrayToUse = arrayOfUppercaseLetters;}
else if(i===spotForLL){theArrayToUse = arrayOfLowercaseLetters;}
else if(i===spotForNu){theArrayToUse = arrayOfNumbers;}
else if(i===spotForSy){theArrayToUse = arrayOfSymbols;}
character = theArrayToUse[Math.floor(Math.random()*theArrayToUse.length)];
password += character;
}
textboxRandomPassword.value = password;
}
function addLowercaseLetters(){
for(var i = 0; i < arrayOfLowercaseLetters.length; i++){
arrayOfCharacters.push(arrayOfLowercaseLetters[i]);
}
}
function addUppercaseLetters(){
for(var i = 0; i < arrayOfUppercaseLetters.length; i++){
arrayOfCharacters.push(arrayOfUppercaseLetters[i]);
}
}
function addNumbers(){
for(var i = 0; i < arrayOfNumbers.length; i++){
arrayOfCharacters.push(arrayOfNumbers[i]);
}
}
function addSymbols(){
for(var i = 0; i < arrayOfSymbols.length; i++){
arrayOfCharacters.push(arrayOfSymbols[i]);
}
}
function copyPasswordBasedOnDevice() {
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent)) {
copyPasswordMobile();
} else {
copyPassword();
}
}