A des crypto for react-native
fork from remobile/react-native-des only add cbc feature in Android and iOS
npm install react-native-des-cbc --save
- Drag
node_modules/react-native-des-cbc/ios/RCTDes.xcodeproj
to your project'sLibraries
in Xcode. - Click on your main project and select
Build Phases
then draglibRCTDes.a
from theLibraries/RCTDes.xcodeproj/Products
intoLink Binary With Libraries
. - (Optional) Look for
Build Settings/Header Search Paths
and make sure it contains both$(SRCROOT)/../../../react-native/React
as recursive. command + b
to buil it.
1/3. In android/settings.gradle
//...
include ':react-native-des-cbc'
project(':react-native-des-cbc').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-des-cbc/android')
2/3. In android/app/build.gradle
//...
dependencies {
//...
compile project(':react-native-des-cbc')
}
3/3. register module (in MainApplication.java
)
//......
import com.remobile.des.RCTDesPackage; // <--- import
//......
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
//......
new RCTDesPackage(), // <------ add here
//......
);
}
var Des = require('react-native-des-cbc');
Des.encrypt("fangyunjiang is a good developer", "ABCDEFGH", function(base64) {
console.log(base64); //wWcr2BJdyldTHn4z3AxA0qBIdHQkIKmpqhTgNuRd3fAFXzvIO5347g==
Des.decrypt(base64, "ABCDEFGH", function(text) {
console.log(text); //fangyunjiang is a good developer
}, function(){
console.log("error");
});
}, function() {
console.log("error");
});
var vec = "cute";
Des.encryptCbc("PizzaLiu is a good developer too", "ABCDEFGH", vec, function(base64) {
console.log(base64);
Des.decryptCbc(base64, "ABCDEFGH", vec, function(text) {
console.log(text); //PizzaLiu is a good developer
}, function(){
console.log("error");
});
}, function() {
console.log("error");
});
-
encrypt(text, key, callback)
-
encrypt(base64, key, callback)
-
encryptCbc(text, key, vec, callback)
-
encryptCbc(base64, key, vec, callback)
- see https://github.com/remobile/react-native-des/blob/master/server
- support java, nodejs, js, php