Encryption

Encryption is a simple way to create encrypted strings to Android project.

License

License

GroupId

GroupId

se.simbio.encryption
ArtifactId

ArtifactId

library
Last Version

Last Version

1.2.0
Release Date

Release Date

Type

Type

aar
Description

Description

Encryption
Encryption is a simple way to create encrypted strings to Android project.
Project URL

Project URL

https://github.com/simbiose/Encryption
Source Code Management

Source Code Management

https://github.com/simbiose/Encryption

Download library

How to add to project

<!-- https://jarcasting.com/artifacts/se.simbio.encryption/library/ -->
<dependency>
    <groupId>se.simbio.encryption</groupId>
    <artifactId>library</artifactId>
    <version>1.2.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/se.simbio.encryption/library/
implementation 'se.simbio.encryption:library:1.2.0'
// https://jarcasting.com/artifacts/se.simbio.encryption/library/
implementation ("se.simbio.encryption:library:1.2.0")
'se.simbio.encryption:library:aar:1.2.0'
<dependency org="se.simbio.encryption" name="library" rev="1.2.0">
  <artifact name="library" type="aar" />
</dependency>
@Grapes(
@Grab(group='se.simbio.encryption', module='library', version='1.2.0')
)
libraryDependencies += "se.simbio.encryption" % "library" % "1.2.0"
[se.simbio.encryption/library "1.2.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Encryption

Encryption is a simple way to encrypt and decrypt strings on Android and Java project.

Android Arsenal Build Status Build Status

How to use

1º Add JitPack to your build file

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}

2º Add the gradle dependency

compile 'com.github.simbiose:Encryption:2.0.1'

3º Get an Encryption instance

String key = "YourKey";
String salt = "YourSalt";
byte[] iv = new byte[16];
Encryption encryption = Encryption.getDefault(key, salt, iv);

4º Encrypt your text

String encrypted = encryption.encryptOrNull("Text to be encrypt");

5º Decrypt your text

String decrypted = encryption.decryptOrNull(encrypted);

Custom usage

You can use you own builder

Encryption encryption = new Encryption.Builder()
                .setKeyLength(128)
                .setKey("YourKey")
                .setSalt("YourSalt")
                .setIv(yourByteIvArray)
                .setCharsetName("UTF8")
                .setIterationCount(1)
                .setDigestAlgorithm("SHA1")
                .setBase64Mode(Base64.DEFAULT)
                .setAlgorithm("AES/CBC/PKCS5Padding")
                .setSecureRandomAlgorithm("SHA1PRNG")
                .setSecretKeyType("PBKDF2WithHmacSHA1")
                .build();

See more on Examples folder, there is an Android, a Java and a Kotlin project.

FAQ

  • What is Encryption library?
    • Encryption library is an Open Source library to help encryption routines in Android and Java applications, our target is to be simple and secure.
  • What is the "IV", what should be my yourByteIvArray
    • Encryption 1.2+ uses by default the AES algorithm in CBC mode, so to encrypt and decrypt works you should have the same key and the same IV byte array to encrypt and to decrypt. An example of IV is byte[] iv = {-89, -19, 17, -83, 86, 106, -31, 30, -5, -111, 61, -75, -84, 95, 120, -53}; like you can see, 16 bytes in a byte array. So if you want to use this library I recommend you create you own IV and save it 💾 .
  • I Don't like null returns when errors occurs, what to do to handle errors?
    • You have the power to handle the exceptions, instead of uses encryptOrNull method just uses the encrypt method. The same for the decryptOrNull, just uses the decrypt method.
  • I'm getting problems with main thread, what to do?
    • Encrypt routines can take time, so you can uses the encryptAsync with a Encryption.Callbackto avoid ANR'S. The same for decryptAsync
  • I'm an older user, version 1.4 or less, what to do to update Encrypt to version 2.+?
    • The library has changed the default iteration count from 65536 to 1, it improve the performance, if you have a code using the old version or if you prefer to use a big iteration count you just need to use a custom builder instead of get the default builder and set the iteration count you want
    • As far as the library uses 1 as default iteration count we do not need anymore the getLowIteration and it was removed from project, if you use it you can just change to getDefault
    • MIT is the project license so feel free to use it 🎉
  • I'm a very older user, version 1.1 or less, what to do to update Encrypt to version 1.2+?
    • The library has several changes in his structure in version 1.2, both in algorithm and in code usage, so if you are an older user you need migrate the encrypted stuff or configure the Builder manually to the same parameters used in version 1.1 and olds.

Want to contribute?

Fell free to contribute, We really like pull requests :octocat:

Third part

  • Copyright (C) 2010 The Android Open Source Project, applied to:
    • Base64 (third.part.android.util.Base64) original comes from here
se.simbio.encryption

Versions

Version
1.2.0
1.1.0
1.0.0