-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
encryptor.js
37 lines (29 loc) · 1.04 KB
/
encryptor.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
// encryptor.js
// HIGHT(ISO/IEC 18033-3) encryption and decryption tool for WelsonJS
// Namhyeon Go <abuse@catswords.net>
// https://github.com/gnh1201/welsonjs
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.encryptStringHIGHT(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;