Skip to content

Instantly share code, notes, and snippets.

@RamadhanAmizudin
RamadhanAmizudin / app.js
Last active June 11, 2024 14:04
Decrypt Cordova Crypt File Plugin
// Blogpost: https://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'
}