node-mcrypt
node-mcrypt copied to clipboard
MCrypt bindings for Node.js
I was using mcrypt in a typescript+webpack project for AWS Lambda function.My unit tests were working fine locally. However after building via webpack and deploying it to AWS it was...
note that I am running npm inside vagrant. tried to npm install mcrypt, got even more errors.... Not sure what to do at this point. any solution? ``` 1051 warn...
This isn't a massive problem but it would be nice if this were handled more gracefully: ``` > new MCrypt() // fails as expected Error: MCrypt module could not open...
I am working to recreate some encryption I am doing in PHP to ensure that both systems can encrypt and decrypt data and communicate with each other. Interestingly, I am...
sudo npm i mcrypt -g --python=/usr/bin/python2.6 > [email protected] install /usr/local/lib/node_modules/mcrypt > node-gyp rebuild --release CC(target) Release/obj.target/libmcrypt/lib/libmcrypt/modules/algorithms/3-way.o CC(target) Release/obj.target/libmcrypt/lib/libmcrypt/modules/algorithms/arcfour.o CC(target) Release/obj.target/libmcrypt/lib/libmcrypt/modules/algorithms/blowfish.o CC(target) Release/obj.target/libmcrypt/lib/libmcrypt/modules/algorithms/blowfish-compat.o CC(target) Release/obj.target/libmcrypt/lib/libmcrypt/modules/algorithms/cast-128.o CC(target) Release/obj.target/libmcrypt/lib/libmcrypt/modules/algorithms/cast-256.o CC(target) Release/obj.target/libmcrypt/lib/libmcrypt/modules/algorithms/des.o CC(target) Release/obj.target/libmcrypt/lib/libmcrypt/modules/algorithms/enigma.o...
node-gyp
When running npm install mcrypt I get error ..how to fix it .. 
Hi. I have an Yii application using "rijndael-128", "ofb" with IV. The encrypted message is saved in mysql and read in a node.js application. I try to decrypt it. The...
env: Mac osx node -v 4.3.0
Hi, I'm getting this error in linux, with webpack Module not found: Error: Can't resolve './build/Release/mcrypt' @ ./~/mcrypt/index.js 3:17-50
Hello, I would like to encrypt a string using the algorithm 'rijndael-128' in 'ecb' mode. My key is in binary format. I create my key with the following code. ```...