
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
encryptouflage
Advanced tools
This is a module, that can encrypt and decrypt messsages. (API Integration)
This is a module, that can encrypt and decrypt messsages.
With this module you can encrypt and decrypt any text message. This might be useful for encrypting Emails or Files in order to prevent third parties from monitoring the matter.
By default, the encrypted message is output in "lettered" format, camouflaging the message to automated email filters.
require the module
const encryptouflage = require('encryptouflage');
encryptouflage.encrypt({ options })
options:'AES-256-CTR'crypto.randomBytes(16)trueWith lettered formatting
the initialization vector is added automatically.
const encryptouflage = require('./encryptouflage');
const fs = require('fs');
var input = fs.createReadStream('./input.txt');
var output = fs.createWriteStream('./output.encr');
var key = 'mysecretkey';
encryptouflage.encrypt({ instream: input, outstream: output, key: key });
With plain formatting
the initialization vector has to be handled manually.
const encryptouflage = require('./encryptouflage');
const fs = require('fs');
var input = fs.createReadStream('./input.txt');
var output = fs.createWriteStream('./output.encr');
var key = 'mysecretkey';
let iv = encryptouflage.encrypt({ instream: input, outstream: output, key: key, lettered: false });
output.on('close', function () {
fs.appendFileSync(output.path, iv);
});
encryptouflage.decrypt({ options })
options:'AES-256-CTR'trueWith lettered formatting
the original initialization vector is extracted automatically and therefore not required.
const encryptouflage = require('./encryptouflage');
const fs = require('fs');
var input = fs.createReadStream('./input.encr');
var output = fs.createWriteStream('./output.txt');
var key = 'mysecretkey';
encryptouflage.decrypt({ instream: input, outstream: output, key: key});
With plain formatting
the original initialization cannot be extracted automatically and is therefore required.
const encryptouflage = require('./encryptouflage');
const fs = require('fs');
var input = fs.createReadStream('./input.encr');
var output = fs.createWriteStream('./output.txt');
var key = 'mysecretkey';
var iv = Buffer.from('qLhMmT0icQrCyTcyWaeT7g==', 'base64');
encryptouflage.decrypt({ instream: input, outstream: output, key: key, lettered: false, iv: iv });
Encryptouflage is MIT licensed. You can find out more and read the license document here.
FAQs
This is a module, that can encrypt and decrypt messsages. (API Integration)
We found that encryptouflage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.