-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
87 lines (80 loc) · 2.86 KB
/
main.ts
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
import { debounce } from "lodash-es";
import { generate32BytePassword } from "./generate32BytePassword.ts";
import { hashPasswordWithSalt } from "./hashPasswordWithSalt.ts";
const debouncedGenerateHash = debounce(async function () {
//@ts-ignore
let password = document.getElementById("password").value;
//@ts-ignore
const algorithm = document.getElementById("algorithm").value;
if (!password) {
//@ts-ignore
password =
//@ts-ignore
document.getElementById("password").value =
generate32BytePassword();
}
try {
const result = await hashPasswordWithSalt(password, {
algorithm,
saltlength:
"SHA-384" == algorithm ? 48 : "SHA-256" == algorithm ? 32 : 64,
});
// 修改 HTML 模板为表格形式,并居中显示
//@ts-ignore
document.getElementById("hash-table").innerHTML = `${result.hash}`;
//@ts-ignore
document.getElementById("algorithm-table").innerHTML =
`${result.algorithm}`;
//@ts-ignore
document.getElementById("password-table").innerHTML = `${password}`;
//@ts-ignore
document.getElementById("salt-table").innerHTML = `${result.salt}`;
} catch (error) {
console.error("Hashing failed:", error);
alert("Hashing process failed");
}
});
const generatePassword = debounce(async function () {
//@ts-ignore
document.getElementById("password").value = generate32BytePassword();
await debouncedGenerateHash();
});
document.addEventListener(
"DOMContentLoaded",
function () {
//@ts-ignore
document.getElementById("button").onclick = async () => {
await debouncedGenerateHash();
};
//@ts-ignore
document.getElementById("generatepassword").onclick = async () => {
await generatePassword();
};
//@ts-ignore
document.getElementById("password").oninput = async () => {
//@ts-ignore
if (document.getElementById("password")?.value.length > 0) {
await debouncedGenerateHash();
}
};
//@ts-ignore
document.getElementById("password").onchange = async () => {
//@ts-ignore
if (document.getElementById("password")?.value.length > 0) {
await debouncedGenerateHash();
}
};
// 通过 id 获取 select 元素
const selectElement = document.getElementById("algorithm");
// 绑定 change 事件
//@ts-ignore
selectElement.addEventListener("change", async function () {
// 执行其他操作...
//@ts-ignore
if (document.getElementById("password")?.value.length > 0) {
await debouncedGenerateHash();
}
});
},
{ once: true },
);