-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
91 lines (73 loc) · 2.72 KB
/
script.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
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
90
91
/*
Encryption and decryption using AES-GCM
*/
async function encrypt() {
const inputText = document.getElementById("inputText").value;
const password = prompt("Enter a password to encrypt:");
if (!password) return; // Abort if no password is provided
const encoder = new TextEncoder();
const data = encoder.encode(inputText);
const iv = getRandomIV(); // Generate a random IV
try {
const key = await getKey(password);
const encryptedData = await crypto.subtle.encrypt({ name: "AES-GCM", iv: iv }, key, data);
// Concatenate IV and encrypted data into a single Uint8Array
const ivAndData = new Uint8Array(iv.byteLength + encryptedData.byteLength);
ivAndData.set(new Uint8Array(iv), 0);
ivAndData.set(new Uint8Array(encryptedData), iv.byteLength);
const encryptedText = toBase64(ivAndData);
document.getElementById("outputText").value = encryptedText;
} catch (error) {
alert("Encryption failed.");
console.error(error);
}
}
async function decrypt() {
const encryptedText = document.getElementById("outputText").value;
const password = prompt("Enter the password to decrypt:");
if (!password) return; // Abort if no password is provided
try {
const key = await getKey(password);
const ivAndData = fromBase64(encryptedText);
const iv = ivAndData.slice(0, 12); // Extract the first 12 bytes as IV
const encryptedData = ivAndData.slice(12); // Rest is the encrypted data
const decryptedData = await crypto.subtle.decrypt(
{ name: "AES-GCM", iv: iv },
key,
encryptedData
);
const decoder = new TextDecoder();
const decryptedText = decoder.decode(decryptedData);
document.getElementById("inputText").value = decryptedText;
} catch (error) {
alert("Incorrect password or decryption failed.");
console.error(error);
}
}
async function getKey(password) {
const encoder = new TextEncoder();
const passwordData = encoder.encode(password);
const passwordHash = await crypto.subtle.digest("SHA-256", passwordData);
return crypto.subtle.importKey(
"raw",
passwordHash,
{ name: "AES-GCM", length: 256 },
false,
["encrypt", "decrypt"]
);
}
function getRandomIV() {
return crypto.getRandomValues(new Uint8Array(12));
}
function toBase64(buffer) {
const binary = String.fromCharCode.apply(null, new Uint8Array(buffer));
return btoa(binary);
}
function fromBase64(base64) {
const binary = atob(base64);
const buffer = new Uint8Array(binary.length);
for (let i = 0; i < binary.length; i++) {
buffer[i] = binary.charCodeAt(i);
}
return buffer;
}