-
Notifications
You must be signed in to change notification settings - Fork 0
/
app2.js
33 lines (29 loc) · 1.07 KB
/
app2.js
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
// function generarClaveSegura() {
// const caracteres = "0123456789!@#$%^&*()-_=+[]{}|;:',.<>?/abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
// const longitud = 16;
// claveGenerada = "";
// function generarIndiceAleatorio(max) {
// const array = new Uint32Array(1);
// window.crypto.getRandomValues(array);
// return array[0] % max;
// }
// while (claveGenerada.length < longitud) {
// const indice = generarIndiceAleatorio(caracteres.length);
// const caracter = caracteres.charAt(indice);
// if (!claveGenerada.includes(caracter)) claveGenerada += caracter;
// }
// incluirCaracterDeCadaGrupo();
// document.getElementById("clave-generada").value = claveGenerada;
// }
// function incluirCaracterDeCadaGrupo() {
// const grupos = [
// "0123456789",
// "abcdefghijklmnopqrstuvwxyz",
// "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
// "!@#$%^&*()-_=+[]{}|;:',.<>?/\\"
// ];
// grupos.forEach(grupo => {
// const indice = Math.floor(Math.random() * grupo.length);
// claveGenerada += grupo.charAt(indice);
// });
// }