From 1e432b25eac8c1a1c49ece51ae0b3639078ed6e2 Mon Sep 17 00:00:00 2001 From: Anmol Sethi Date: Mon, 11 May 2020 21:23:50 -0400 Subject: [PATCH] Comment on hash(password) --- src/node/entry.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node/entry.ts b/src/node/entry.ts index b5fea7b4..b46b1a91 100644 --- a/src/node/entry.ts +++ b/src/node/entry.ts @@ -47,6 +47,7 @@ const main = async (cliArgs: Args): Promise => { auth: args.auth, commit, host: host, + // The hash does not add any actual security but we do it for obfuscation purposes. password: password ? hash(password) : undefined, port: port, proxyDomains: args["proxy-domain"],