module.exports.decrypt = function(text){
    const decipher = crypto.createDecipher('aes-256-cbc', CIPHER);
    const dec = decipher.update(text,'hex','utf8') + decipher.final('utf8');
    return dec;
};