Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khadkarajesh/cryptomanager
Android Library for encryption and decryption.
https://github.com/khadkarajesh/cryptomanager
android android-library decryption encryption
Last synced: about 11 hours ago
JSON representation
Android Library for encryption and decryption.
- Host: GitHub
- URL: https://github.com/khadkarajesh/cryptomanager
- Owner: khadkarajesh
- Created: 2016-12-26T16:01:20.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-28T04:24:17.000Z (about 8 years ago)
- Last Synced: 2025-02-01T12:45:31.894Z (12 days ago)
- Topics: android, android-library, decryption, encryption
- Language: Java
- Homepage:
- Size: 129 KB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CryptoManager
Android Library for encryption and decryption.Download
-------------------
use Gradle:```gradle
dependencies {
compile 'com.github.rajeshkumarkhadka:cryptomanager:0.0.1'
}```
Or Maven:
```xml
com.github.rajeshkumarkhadka
cryptomanager
0.0.1
aar```
How do I use Cryptomanager?
-------------------
Create key alias in strings.xml```
YOUR_KEY_ALIAS
```
```
public class CryptoApplication extends Application {
public static CryptoManager cryptoManager;
public static Context context;@Override
public void onCreate() {
super.onCreate();
this.context = this;
}public static CryptoManager getCryptoManager() {
return cryptoManager = CryptoFactory.getInstance(context);
}
}
```In Activity or Fragment
```
CryptoManager cryptoManager = CryptoApplication.getCryptoManager();
cryptoManager.decrypt(cryptoManager.encrypt("hello testing"));```
License
--------Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.