forked from fybx/zkl-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
74 lines (59 loc) · 2.14 KB
/
index.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
import { generateKeypair } from "./zkl-kds/key-derivation.js";
import {
encryptFile,
decryptFile,
encryptString,
decryptString,
} from "./crypto.js";
let keypair;
document
.getElementById("fileInput")
.addEventListener("change", function (event) {
const file = event.target.files[0];
if (file) {
const reader = new FileReader();
reader.onload = function (e) {
const arrayBuffer = e.target.result;
const byteArray = new Uint8Array(arrayBuffer);
if (!keypair) {
console.error("keypair not ready, skipping file enc/dec");
return;
}
const cipherFile = encryptFile(keypair.pkey, byteArray);
console.log(cipherFile);
{
const numPixels = cipherFile.length / 4;
const width = Math.floor(Math.sqrt(numPixels));
const height = Math.ceil(numPixels / width);
const canvas = document.getElementById("bitmapCanvas");
const context = canvas.getContext("2d");
canvas.width = width;
canvas.height = height;
const imageData = context.createImageData(width, height);
for (let i = 0; i < cipherFile.length; i++) {
imageData.data[i] = cipherFile[i];
}
context.putImageData(imageData, 0, 0);
}
const plainFile = decryptFile(keypair.skey, cipherFile);
console.log(plainFile);
};
reader.readAsArrayBuffer(file);
} else {
console.warn("No file selected");
}
});
// we wait for a second before executing this block
// because WASM module takes time to load
setTimeout(async () => {
console.log("start");
const mnemonic =
"digital radio analyst fine casino have mass blood potato hat web capital prefer debate fee differ spray cloud";
// for this time, skey means private key, and pkey is public
const { publicKey: pkey, privateKey: skey } = await generateKeypair(mnemonic);
keypair = { pkey, skey };
const cipherText = encryptString(pkey, "message");
console.log("encrypted string is", cipherText);
console.log("decrypted string is", decryptString(skey, cipherText));
console.log("end");
}, 1000);