-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathencryptor.js
More file actions
39 lines (32 loc) · 1.15 KB
/
encryptor.js
File metadata and controls
39 lines (32 loc) · 1.15 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
// encryptor.js
// Copyright 2019-2025, Namhyeon Go <gnh1201@catswords.re.kr> and the WelsonJS contributors.
// SPDX-License-Identifier: GPL-3.0-or-later
// https://github.com/gnh1201/welsonjs
//
// HIGHT(ISO/IEC 18033-3) encryption and decryption tool for WelsonJS framework
//
var FILE = require("lib/file");
var Toolkit = require("lib/toolkit");
function main(args) {
if (args.length < 1) {
console.error("Usage: cscript app.js encryptor <filename>");
return 0;
}
var filename = args[0];
var dstfile = filename + ".enc";
if (FILE.fileExists(dstfile)) {
console.error(dstfile, "already exists. Please delete it.");
return 0;
}
var userKey = '';
while (userKey.length == 0 || userKey.length > 16) {
userKey = Toolkit.prompt("Please enter the password for encryption:");
}
var data = FILE.readFile(filename, FILE.CdoCharset.CdoUTF_8);
var encryptedData = Toolkit.encryptString(userKey, data);
var dstfile = filename + ".enc";
FILE.writeFile(dstfile, encryptedData, FILE.CdoCharset.CdoUTF_8);
console.log("Saved to", dstfile);
console.log("Done");
}
exports.main = main;