Skip to content

Instantly share code, notes, and snippets.

@RamadhanAmizudin
RamadhanAmizudin / app.js
Last active August 25, 2024 10:42
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'
}