Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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 at

http://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.