forked from Crypho/cordova-plugin-scrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
83 lines (69 loc) · 4.08 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-scrypt"
version="2.1.2">
<name>ScryptPlugin</name>
<author>Crypho AS</author>
<description>
An scrypt implementation for cordova apps in iOS and Android.
</description>
<license>MIT</license>
<keywords>scrypt, encryption</keywords>
<js-module src="www/scrypt.js" name="scrypt">
<clobbers target="scrypt" />
</js-module>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ScryptPlugin">
<param name="ios-package" value="ScryptPlugin"/>
</feature>
</config-file>
<source-file src="src/ios/ScryptPlugin.m" />
<header-file src="src/ios/ScryptPlugin.h" />
<header-file src="src/libscrypt/crypto_scrypt-hexconvert.h" target-dir="src/ios"/>
<header-file src="src/libscrypt/libscrypt.h" target-dir="src/ios"/>
<header-file src="src/libscrypt/b64.h" target-dir="src/ios"/>
<header-file src="src/libscrypt/sha256.h" target-dir="src/ios"/>
<header-file src="src/libscrypt/slowequals.h" target-dir="src/ios"/>
<header-file src="src/libscrypt/sysendian.h" target-dir="src/ios"/>
<header-file src="src/libscrypt/android.h" target-dir="src/ios"/>
<source-file src="src/libscrypt/b64.c" target-dir="src/ios"/>
<source-file src="src/libscrypt/crypto-mcf.c" target-dir="src/ios"/>
<source-file src="src/libscrypt/crypto_scrypt-check.c" target-dir="src/ios"/>
<source-file src="src/libscrypt/crypto_scrypt-hash.c" target-dir="src/ios"/>
<source-file src="src/libscrypt/crypto_scrypt-hexconvert.c" target-dir="src/ios"/>
<source-file src="src/libscrypt/crypto_scrypt-nosse.c" target-dir="src/ios"/>
<source-file src="src/libscrypt/crypto-scrypt-saltgen.c" target-dir="src/ios"/>
<source-file src="src/libscrypt/sha256.c" target-dir="src/ios"/>
<source-file src="src/libscrypt/slowequals.c" target-dir="src/ios"/>
</platform>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ScryptPlugin" >
<param name="android-package" value="com.crypho.plugins.ScryptPlugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19"/>
</config-file>
<source-file src="src/android/com/crypho/plugins/ScryptPlugin.java" target-dir="src/com/crypho/plugins/"/>
<source-file src="libs/arm64-v8a/libscrypt_crypho.so" target-dir="src/main/jniLibs/arm64-v8a/"/>
<source-file src="libs/armeabi/libscrypt_crypho.so" target-dir="src/main/jniLibs/armeabi/"/>
<source-file src="libs/armeabi-v7a/libscrypt_crypho.so" target-dir="src/main/jniLibs/armeabi-v7a/"/>
<source-file src="libs/mips/libscrypt_crypho.so" target-dir="src/main/jniLibs/mips/"/>
<source-file src="libs/mips64/libscrypt_crypho.so" target-dir="src/main/jniLibs/mips64/"/>
<source-file src="libs/x86/libscrypt_crypho.so" target-dir="src/main/jniLibs/x86/"/>
<source-file src="libs/x86_64/libscrypt_crypho.so" target-dir="src/main/jniLibs/x86_64/"/>
<source-file src="libs/arm64-v8a/libscrypt_crypho.so" target-dir="libs/arm64-v8a/"/>
<source-file src="libs/armeabi/libscrypt_crypho.so" target-dir="libs/armeabi/"/>
<source-file src="libs/armeabi-v7a/libscrypt_crypho.so" target-dir="libs/armeabi-v7a/"/>
<source-file src="libs/mips/libscrypt_crypho.so" target-dir="libs/mips/"/>
<source-file src="libs/mips64/libscrypt_crypho.so" target-dir="libs/mips64/"/>
<source-file src="libs/x86/libscrypt_crypho.so" target-dir="libs/x86/"/>
<source-file src="libs/x86_64/libscrypt_crypho.so" target-dir="libs/x86_64/"/>
</platform>
</plugin>