quixxifilecrypto

0.0.6 • Public • Published

Quixxi file crypto plugin

The "Quixxi File Crypto" Cordova plugin provides a comprehensive solution for encrypting and decrypting both HTML and JavaScript resources within a Cordova iOS application. This plugin enhances the security of your application by encrypting all JavaScript files and HTML resources during the build process and decrypting them at runtime, ensuring that sensitive information is protected from unauthorized access.

Add Plugin

cordova plugin add quixxifilecrypto

Purpose

This plugin is used to secure the source code of your Cordova ios app.

Features

  • Encryption at Build Time: All JavaScript files and HTML resources are encrypted during the build process, ensuring that they are protected from unauthorized access.
  • Decryption at Runtime: Encrypted JavaScript files and HTML resources are decrypted on-the-fly at runtime, allowing your application to access and utilize them as needed.
  • Seamless Integration: The plugin integrates seamlessly into your Cordova iOS application, requiring minimal configuration and no changes to your existing codebase.
  • Enhanced Security: By encrypting JavaScript files and HTML resources, the plugin enhances the security of your application, protecting sensitive information from potential threats.

Configuration

Encrypt

cordova build ios

Decrypt

cordova emulate ios or
cordova run ios

Encryption subjects.

Default

  • .html
  • .htm
  • .js
  • .css

Edit subjects

You can specify the encryption subjects by editing plugin.xml.

plugins/quixxi-file-crypto/plugin.xml

<cryptfiles>
    <include>
        <file regex="\.(htm|html|js|css)$" />
    </include>
    <exclude>
        <file regex="exclude_file\.js$" />
    </exclude>
</cryptfiles>

Specify the target file as a regular expression.

Supported platforms

  • iOS

License

GPL-3.0

Dependents (0)

Package Sidebar

Install

npm i quixxifilecrypto

Weekly Downloads

1

Version

0.0.6

License

GPL

Unpacked Size

52.7 kB

Total Files

9

Last publish

Collaborators

  • quixxi