Created
April 2, 2017 05:43
-
-
Save danielyaa5/516f96e4f15bed7be386c7495fb73e98 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const read = require('read') | |
const CryptoJS = require("crypto-js"); | |
const handleReadErr = err => console.log(`Problem reading input.%n ${err}`); | |
const handleDecryptError = err => { | |
console.log(`Failed to decrypt text, probably the incorrect pwd.`); | |
if (err) console.log(err); | |
} | |
const decrypt = (text, pwd) => { | |
const bytes = CryptoJS.AES.decrypt(text.toString(), pwd); | |
const plaintext = bytes.toString(CryptoJS.enc.Utf8); | |
return plaintext; | |
}; | |
const encrypt = (text, pwd) => CryptoJS.AES.encrypt(text.toString(), pwd).toString(); | |
read({ prompt: 'Password: ', silent: true }, (err, pwd) => { | |
if (err) return handleReadErr(err); | |
pwd = pwd.trim(); | |
read({ prompt: 'Paste encrypted passwords file or press enter if creating a new file.'}, (err, encryptedText) => { | |
let decryptedText; | |
try { | |
decryptedText = decrypt(encryptedText, pwd); | |
} catch (e) { | |
return handleDecryptError(e); | |
} finally { | |
if (!decryptedText) return handleDecryptError(); | |
} | |
read({ prompt: 'Enter "d" for decrypt, or enter "a" for append to or create a file:'}, (err, input) => { | |
if (err) return handleReadErr(err); | |
input = input.trim(); | |
if (input === 'd') { | |
return console.log(decryptedText); | |
} | |
if (input === 'a') { | |
return read({ prompt: 'Enter new password data, use new line char for new lines:', silent: true }, (err, plaintextPwd) => { | |
if (err) return handleReadErr(err); | |
plaintextPwd = plaintextPwd.trim(); | |
plaintextPwd = plaintextPwd.split('\\n').reduce((acc, item) => { | |
if(acc) acc += '\n'; | |
acc += item; | |
return acc; | |
}, ''); | |
const appendedPlainText = decryptedText + '\n' + plaintextPwd; | |
const appendedEncryptedText = encrypt(appendedPlainText, pwd); | |
console.log('New encrypted passwords:'); | |
console.log(appendedEncryptedText); | |
}) | |
} | |
return console.log('Please enter d or a.'); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment