- Support UTF-8 Characters Arabic Chinese Farsi & .... Characters
- Without adding additional characters
- Extremely fast encrypt 100MB string per second
- Optimized for JSON encryption
- Min Sdk Version api 1
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
compile 'com.github.alirezaashrafi:codia:2.0.0'
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.alirezaashrafi</groupId>
<artifactId>codia</artifactId>
<version>2.0.0</version>
</dependency>
Codia codia = new Codia("Your Own Private Key");
String text = "Easy and Fast android - php - java Encryption Decryption library";
String encoded = codia.encode(text);
String decoded = codia.decode(encoded);
require_once __DIR__.'/lib/Codia.php';
$codia = new Codia("Your Own Private Key");
$text = "Easy and Fast android - php - java Encryption Decryption library";
$encodedText = $codia->encode($text);
$decodedText = $codia->decode($encodedText);
val text = "Easy and Fast android - php - java Encryption Decryption library"
val codia = Codia("Your Own Private Key")
val encodedText = codia.encode(text)
val decodedText = codia.decode(encodedText)
Copyright 2018 Alireza Ashrafi
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.
- Alireza Ashrafi
- web site : alirezaashrafi.ir
- email : alirezaashrafi.pv@gmail.com
- Phone & Whatsapp +98 901 396 2648
- telegram : @dr_khaki