cordova-plugin-aes256-encryption
Version:
This cordova ionic plugin allows you to perform AES 256 encryption and decryption on the plain text. It's a cross-platform plugin which supports both Android and iOS. The encryption and decryption are performed on the device native layer so that the perfo
33 lines (32 loc) • 1.49 kB
text/xml
<plugin id="cordova-plugin-aes256-encryption" version="1.2.2"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>AES256</name>
<js-module name="AES256" src="www/AES256.js">
<clobbers target="cordova.plugins.AES256" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="AES256">
<param name="android-package" value="com.ideas2it.aes256.AES256" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml" />
<source-file src="src/android/AES256.java" target-dir="src/com/ideas2it/aes256/AES256" />
<framework src="src/android/plugin.gradle" custom="true" type="gradleReference"/>
</platform>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="AES256">
<param name="ios-package" value="AES256" />
</feature>
</config-file>
<header-file src="src/ios/AES256-Plugin-Bridging-Header.h" />
<framework src="Security.framework" />
<source-file src="src/ios/AES256.swift" />
<source-file src="src/ios/AES256CBC.swift" />
<source-file src="src/ios/PBKDF2.swift" />
<dependency id="cordova-plugin-add-swift-support" version="^2.0.2"/>
</platform>
</plugin>