Skip to content

Instantly share code, notes, and snippets.

@nullifye
nullifye / app.js
Created October 17, 2021 03:01 — forked from RamadhanAmizudin/app.js
Decrypt Cordova Crypt File Plugin
// Blogpost: http://blog.rz.my/2017/11/decrypting-cordova-crypt-file-plugin.html
var fs = require("fs"),
path = require("path"),
crypto = require("crypto");
var config = {
key : 'CRYPT_KEY',
iv : 'CRYPT_IV'
}