![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/lib/node_modules/forever/node_modules/secure-keys/ |
Upload File : |
'use strict'; var crypto = require('crypto'); var json = { stringify: function (obj, replacer, spacing) { return JSON.stringify(obj, replacer || null, spacing || 2) }, parse: JSON.parse }; module.exports = Secure; /** * @constructor * Simple Object used to serialize and deserialize */ function Secure(opts) { opts = opts || {}; this.secret = typeof opts !== 'string' ? opts.secret : opts; this.format = opts.format || json; this.alg = opts.alg || 'aes-256-ctr'; if (!this.secret) throw new Error('Secret is a required option'); } Secure.prototype.encrypt = function encrypt(data, callback) { var self = this; return Object.keys(data).reduce(function (acc, key) { var value = self.format.stringify(data[key]); acc[key] = { alg: self.alg, value: cipherConvert(value, { alg: self.alg, secret: self.secret, encs: { input: 'utf8', output: 'hex' } }) }; return acc; }, {}); }; Secure.prototype.decrypt = function decrypt(data, callback) { var self = this; return Object.keys(data).reduce(function (acc, key) { var decrypted = cipherConvert(data[key].value, { alg: data[key].alg || self.alg, secret: self.secret, encs: { input: 'hex', output: 'utf8' } }); acc[key] = self.format.parse(decrypted); return acc; }, {}); }; // // ### function cipherConvert (contents, opts) // Returns the result of the cipher operation // on the contents contents. // function cipherConvert(contents, opts) { var encs = opts.encs; var cipher = crypto.createCipher(opts.alg, opts.secret); return cipher.update(contents, encs.input, encs.output) + cipher.final(encs.output); }