1.0.3 • Published 5 years ago

vcm.js v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

With this library you can decrypt files, encrypted by vim using Blowfish algorythm.

Install:

npm i vcm.js

Example:

const vcm = require('vcm.js'),
  fs = require('fs');

const data = fs.readFileSync('passwords.pwd'),
  decrypted = vcm.decrypt('$ecreT', data),
  text = Buffer.from(decrypted).toString('utf8');
console.log(text);
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago