Built motion from commit 9d1906d1.|2.5.40
[motion2.git] / server / components / encryptor / index.js
index 090f345..e622477 100644 (file)
@@ -15,4 +15,4 @@
 // * treaties. The SOFTWARE PRODUCT is licensed, not sold.                        *
 // *                                                                       *
 // *************************************************************************
-var _0x7872=['aes192','encrypt','algorithm','join','error','is\x20not\x20a\x20supported\x20algorithm.\x20Your\x20system\x20supports\x20the\x20following\x20algorithms:','filter','indexOf','hasOwnProperty','createWriteStream','data','binary','write','end','final','close','unlink','decryptFile','createReadStream','createDecipher','encryptString','createCipher','update','base64','decryptString','secret','utf8','crypto','bluebird','lodash','../../config/environment','../../config/logger','app','secrets','session','aes-256-ctr'];(function(_0x5053ff,_0x3fb835){var _0x2d4f6c=function(_0x5a6323){while(--_0x5a6323){_0x5053ff['push'](_0x5053ff['shift']());}};_0x2d4f6c(++_0x3fb835);}(_0x7872,0xab));var _0x2787=function(_0x2c83b7,_0xa6861c){_0x2c83b7=_0x2c83b7-0x0;var _0x7fc6e8=_0x7872[_0x2c83b7];return _0x7fc6e8;};'use strict';var crypto=require(_0x2787('0x0'));var fs=require('fs');var BPromise=require(_0x2787('0x1'));var _=require(_0x2787('0x2'));var config=require(_0x2787('0x3'));var logger=require(_0x2787('0x4'))(_0x2787('0x5'));const AES_SUPPORTED_RX=/^aes(-)?\d{3}(-(cbc|cfb|ctr)(1|8)?){0,1}$/;const stringOptions={'secret':config[_0x2787('0x6')][_0x2787('0x7')],'algorithm':_0x2787('0x8')};const fileOptions={'algorithm':_0x2787('0x9')};if(config[_0x2787('0xa')]&&config['encrypt'][_0x2787('0xb')]){var isSupported=isAlgorithmSupported(config['encrypt'][_0x2787('0xb')]);if(isSupported){fileOptions[_0x2787('0xb')]=config['encrypt'][_0x2787('0xb')];}else{var supportedAlgorithms=getSupportedCiphers()[_0x2787('0xc')](',\x20');logger[_0x2787('0xd')](config['encrypt'][_0x2787('0xb')],_0x2787('0xe'),supportedAlgorithms);}}function isASupportedCipher(_0x401ad8){return AES_SUPPORTED_RX['test'](_0x401ad8);}function getSupportedCiphers(){return crypto['getCiphers']()[_0x2787('0xf')](isASupportedCipher);}function isAlgorithmSupported(_0x55b386){return getSupportedCiphers()[_0x2787('0x10')](_0x55b386)>-0x1;}function combineOptions(_0x22cf0b){var _0x18992a={};for(var _0x1bc986 in fileOptions){if(fileOptions['hasOwnProperty'](_0x1bc986)){_0x18992a[_0x1bc986]=fileOptions[_0x1bc986];}}if(_0x22cf0b){for(var _0x27ee36 in _0x22cf0b){if(_0x22cf0b[_0x2787('0x11')](_0x27ee36)){_0x18992a[_0x27ee36]=_0x22cf0b[_0x27ee36];}}}return _0x18992a;}exports['encryptFile']=function(_0x20d8d2,_0x5323f3,_0x1f247a,_0x4c8d87){return new BPromise(function(_0x2604ca,_0x20b566){_0x4c8d87=combineOptions(_0x4c8d87);var _0x1f9eb4=new Buffer(_0x1f247a);var _0x550e09=fs['createReadStream'](_0x20d8d2);var _0x5ebedc=fs[_0x2787('0x12')](_0x5323f3);var _0x42454d=crypto['createCipher'](_0x4c8d87[_0x2787('0xb')],_0x1f9eb4);_0x550e09['on'](_0x2787('0x13'),function(_0x58eb42){var _0x57368a=new Buffer(_0x42454d['update'](_0x58eb42),_0x2787('0x14'));_0x5ebedc[_0x2787('0x15')](_0x57368a);});_0x550e09['on'](_0x2787('0x16'),function(){try{var _0x170dcf=new Buffer(_0x42454d[_0x2787('0x17')](_0x2787('0x14')),_0x2787('0x14'));_0x5ebedc['write'](_0x170dcf);_0x5ebedc['end']();_0x5ebedc['on'](_0x2787('0x18'),function(){return _0x2604ca(_0x5323f3);});}catch(_0x412fbb){fs[_0x2787('0x19')](_0x5323f3);return _0x20b566(_0x412fbb);}});});};exports[_0x2787('0x1a')]=function(_0x351a81,_0x140738,_0x52035a,_0x92b18a){return new BPromise(function(_0x3f31c7,_0x3ba0d5){_0x92b18a=combineOptions(_0x92b18a);var _0x70568c=new Buffer(_0x52035a);var _0xb039e1=fs[_0x2787('0x1b')](_0x351a81);var _0x591c26=fs[_0x2787('0x12')](_0x140738);var _0x5357c2=crypto[_0x2787('0x1c')](_0x92b18a[_0x2787('0xb')],_0x70568c);_0xb039e1['on']('data',function(_0x315a20){var _0x28282a=new Buffer(_0x5357c2['update'](_0x315a20),_0x2787('0x14'));_0x591c26['write'](_0x28282a);});_0xb039e1['on']('end',function(){try{var _0x2c12b9=new Buffer(_0x5357c2[_0x2787('0x17')]('binary'),_0x2787('0x14'));_0x591c26[_0x2787('0x15')](_0x2c12b9);_0x591c26['end']();_0x591c26['on'](_0x2787('0x18'),function(){return _0x3f31c7(_0x140738);});}catch(_0x3db4be){fs[_0x2787('0x19')](_0x140738);return _0x3ba0d5(_0x3db4be);}});});};exports[_0x2787('0x1d')]=function(_0x45553d,_0x506319,_0x7d63c1){var _0x4de156=_0x7d63c1||stringOptions['algorithm'];var _0x34f829=_0x506319||stringOptions['secret'];var _0x1100a2=crypto[_0x2787('0x1e')](_0x4de156,_0x34f829);var _0x5c76c5=_0x1100a2[_0x2787('0x1f')](_0x45553d,'utf8',_0x2787('0x20'));_0x5c76c5+=_0x1100a2['final']('base64');return _0x5c76c5;};exports[_0x2787('0x21')]=function(_0x14299f,_0x282105,_0x1a6918){var _0x10e8b8=_0x1a6918||stringOptions['algorithm'];var _0x10d78d=_0x282105||stringOptions[_0x2787('0x22')];var _0x5dadc7=crypto[_0x2787('0x1c')](_0x10e8b8,_0x10d78d);var _0x5d3eeb=_0x5dadc7[_0x2787('0x1f')](_0x14299f,_0x2787('0x20'),_0x2787('0x23'));_0x5d3eeb+=_0x5dadc7['final'](_0x2787('0x23'));return _0x5d3eeb;};
\ No newline at end of file
+var _0xb9f0=['aes192','encrypt','algorithm','join','is\x20not\x20a\x20supported\x20algorithm.\x20Your\x20system\x20supports\x20the\x20following\x20algorithms:','getCiphers','indexOf','hasOwnProperty','encryptFile','createReadStream','data','update','binary','write','end','final','createDecipher','close','encryptString','secret','createCipher','utf8','base64','decryptString','crypto','bluebird','lodash','../../config/environment','app','secrets','aes-256-ctr'];(function(_0x3c51d4,_0x36ba53){var _0x53c45f=function(_0x3d6683){while(--_0x3d6683){_0x3c51d4['push'](_0x3c51d4['shift']());}};_0x53c45f(++_0x36ba53);}(_0xb9f0,0x1ab));var _0x0b9f=function(_0x24985d,_0x240eb5){_0x24985d=_0x24985d-0x0;var _0x4cd358=_0xb9f0[_0x24985d];return _0x4cd358;};'use strict';var crypto=require(_0x0b9f('0x0'));var fs=require('fs');var BPromise=require(_0x0b9f('0x1'));var _=require(_0x0b9f('0x2'));var config=require(_0x0b9f('0x3'));var logger=require('../../config/logger')(_0x0b9f('0x4'));const AES_SUPPORTED_RX=/^aes(-)?\d{3}(-(cbc|cfb|ctr)(1|8)?){0,1}$/;const stringOptions={'secret':config[_0x0b9f('0x5')]['session'],'algorithm':_0x0b9f('0x6')};const fileOptions={'algorithm':_0x0b9f('0x7')};if(config[_0x0b9f('0x8')]&&config[_0x0b9f('0x8')]['algorithm']){var isSupported=isAlgorithmSupported(config[_0x0b9f('0x8')][_0x0b9f('0x9')]);if(isSupported){fileOptions['algorithm']=config[_0x0b9f('0x8')][_0x0b9f('0x9')];}else{var supportedAlgorithms=getSupportedCiphers()[_0x0b9f('0xa')](',\x20');logger['error'](config['encrypt']['algorithm'],_0x0b9f('0xb'),supportedAlgorithms);}}function isASupportedCipher(_0x2bdbcf){return AES_SUPPORTED_RX['test'](_0x2bdbcf);}function getSupportedCiphers(){return crypto[_0x0b9f('0xc')]()['filter'](isASupportedCipher);}function isAlgorithmSupported(_0x18fe11){return getSupportedCiphers()[_0x0b9f('0xd')](_0x18fe11)>-0x1;}function combineOptions(_0x5761c8){var _0x1bee02={};for(var _0x193f54 in fileOptions){if(fileOptions[_0x0b9f('0xe')](_0x193f54)){_0x1bee02[_0x193f54]=fileOptions[_0x193f54];}}if(_0x5761c8){for(var _0x57b624 in _0x5761c8){if(_0x5761c8[_0x0b9f('0xe')](_0x57b624)){_0x1bee02[_0x57b624]=_0x5761c8[_0x57b624];}}}return _0x1bee02;}exports[_0x0b9f('0xf')]=function(_0x488a7d,_0x1b6a34,_0x26bff1,_0x395557){return new BPromise(function(_0xb3868d,_0x3dfe7b){_0x395557=combineOptions(_0x395557);var _0x5d4b9c=new Buffer(_0x26bff1);var _0x5f5806=fs[_0x0b9f('0x10')](_0x488a7d);var _0x3a24a7=fs['createWriteStream'](_0x1b6a34);var _0x36aad7=crypto['createCipher'](_0x395557['algorithm'],_0x5d4b9c);_0x5f5806['on'](_0x0b9f('0x11'),function(_0x4dc5ce){var _0x45c025=new Buffer(_0x36aad7[_0x0b9f('0x12')](_0x4dc5ce),_0x0b9f('0x13'));_0x3a24a7[_0x0b9f('0x14')](_0x45c025);});_0x5f5806['on'](_0x0b9f('0x15'),function(){try{var _0x4a0c90=new Buffer(_0x36aad7[_0x0b9f('0x16')](_0x0b9f('0x13')),_0x0b9f('0x13'));_0x3a24a7[_0x0b9f('0x14')](_0x4a0c90);_0x3a24a7[_0x0b9f('0x15')]();_0x3a24a7['on']('close',function(){return _0xb3868d(_0x1b6a34);});}catch(_0x253abb){fs['unlink'](_0x1b6a34);return _0x3dfe7b(_0x253abb);}});});};exports['decryptFile']=function(_0x23a580,_0x26b450,_0x269404,_0x3c27cc){return new BPromise(function(_0x5d393a,_0x34650a){_0x3c27cc=combineOptions(_0x3c27cc);var _0x29f422=new Buffer(_0x269404);var _0x126bfa=fs[_0x0b9f('0x10')](_0x23a580);var _0x5f3c45=fs['createWriteStream'](_0x26b450);var _0x22093e=crypto[_0x0b9f('0x17')](_0x3c27cc[_0x0b9f('0x9')],_0x29f422);_0x126bfa['on'](_0x0b9f('0x11'),function(_0x1db0f1){var _0x24749c=new Buffer(_0x22093e['update'](_0x1db0f1),_0x0b9f('0x13'));_0x5f3c45['write'](_0x24749c);});_0x126bfa['on'](_0x0b9f('0x15'),function(){try{var _0x39ab15=new Buffer(_0x22093e[_0x0b9f('0x16')](_0x0b9f('0x13')),'binary');_0x5f3c45[_0x0b9f('0x14')](_0x39ab15);_0x5f3c45[_0x0b9f('0x15')]();_0x5f3c45['on'](_0x0b9f('0x18'),function(){return _0x5d393a(_0x26b450);});}catch(_0x3f491b){fs['unlink'](_0x26b450);return _0x34650a(_0x3f491b);}});});};exports[_0x0b9f('0x19')]=function(_0x574a9f,_0x743b0a,_0x26b57c){var _0x2f33ce=_0x26b57c||stringOptions[_0x0b9f('0x9')];var _0x2ad325=_0x743b0a||stringOptions[_0x0b9f('0x1a')];var _0x4b0881=crypto[_0x0b9f('0x1b')](_0x2f33ce,_0x2ad325);var _0x42ae46=_0x4b0881[_0x0b9f('0x12')](_0x574a9f,_0x0b9f('0x1c'),'base64');_0x42ae46+=_0x4b0881[_0x0b9f('0x16')](_0x0b9f('0x1d'));return _0x42ae46;};exports[_0x0b9f('0x1e')]=function(_0x5e6b16,_0x3f4855,_0x4ee534){var _0x4eda81=_0x4ee534||stringOptions['algorithm'];var _0x2441b7=_0x3f4855||stringOptions['secret'];var _0x52657f=crypto[_0x0b9f('0x17')](_0x4eda81,_0x2441b7);var _0x372365=_0x52657f[_0x0b9f('0x12')](_0x5e6b16,'base64',_0x0b9f('0x1c'));_0x372365+=_0x52657f[_0x0b9f('0x16')](_0x0b9f('0x1c'));return _0x372365;};
\ No newline at end of file