node-mcrypt icon indicating copy to clipboard operation
node-mcrypt copied to clipboard

MCrypt bindings for Node.js

Results 12 node-mcrypt issues
Sort by recently updated
recently updated
newest added

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...

When running npm install mcrypt I get error ..how to fix it .. ![untitled](https://cloud.githubusercontent.com/assets/8279284/17010657/2cd251ca-4f30-11e6-9fc1-c268bcab0479.png)

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...

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. ```...