https://github.com/itinance/react-native-cryptfs
This library provides native file enryption and decryption for ReactNative-Apps (RSA, AES)
https://github.com/itinance/react-native-cryptfs
Last synced: 5 months ago
JSON representation
This library provides native file enryption and decryption for ReactNative-Apps (RSA, AES)
- Host: GitHub
- URL: https://github.com/itinance/react-native-cryptfs
- Owner: itinance
- License: mit
- Created: 2016-11-25T14:53:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-25T18:53:29.000Z (over 9 years ago)
- Last Synced: 2025-04-03T17:37:47.251Z (about 1 year ago)
- Size: 1000 Bytes
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-native-cryptfs
This library provides native file enryption and decryption for ReactNative-Apps (RSA, AES)
- !! Under DEVELOPMENT !! -
The purpose of this library is not to reinvent the wheel. Instead we want to provide bindings between native crypto libraries to the react-native level.
Something like this:
```
function decryptFile( algorythm, sourcePath, destinationPath, key);
```
or
```
function decryptFile( algorythm, sourcePath, destinationPath, publicKey, privateKey)
```
Contributors are welcome.