All Projects → simbiose → Encryption

simbiose / Encryption

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

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects

Projects that are alternatives of or similar to Encryption

Cloaker
Simple, drag-and-drop, password-based file encryption
Stars: ✭ 267 (-17.59%)
Mutual labels:  encryption
Chatsecure Ios
ChatSecure is a free and open source encrypted chat client for iOS that supports OTR and OMEMO encryption over XMPP.
Stars: ✭ 3,044 (+839.51%)
Mutual labels:  encryption
Zebra Crossing
Zebra Crossing: an easy-to-use digital safety checklist
Stars: ✭ 307 (-5.25%)
Mutual labels:  encryption
Crypter
Crypter - Python3 based builder and ransomware compiled to Windows executable using PyInstaller
Stars: ✭ 268 (-17.28%)
Mutual labels:  encryption
Ssh Vault
🌰 encrypt/decrypt using ssh keys
Stars: ✭ 277 (-14.51%)
Mutual labels:  encryption
Aes Rsa Java
AES+RSA结合应用java示例
Stars: ✭ 295 (-8.95%)
Mutual labels:  encryption
Rocketjob
Ruby's missing background and batch processing system
Stars: ✭ 258 (-20.37%)
Mutual labels:  encryption
Purse
GPG asymmetric (YubiKey) password manager
Stars: ✭ 313 (-3.4%)
Mutual labels:  encryption
Wire Ios
📱 Wire for iOS (iPhone and iPad)
Stars: ✭ 3,079 (+850.31%)
Mutual labels:  encryption
Redux Persist Transform Encrypt
Encrypt your Redux store
Stars: ✭ 306 (-5.56%)
Mutual labels:  encryption
Bluntly
serverless, encrypted, NAT-breaking p2p connections - DEPRECATED
Stars: ✭ 270 (-16.67%)
Mutual labels:  encryption
Portwarden
Create Encrypted Backups of Your Bitwarden Vault with Attachments
Stars: ✭ 274 (-15.43%)
Mutual labels:  encryption
Veracrypt
Disk encryption with strong security based on TrueCrypt
Stars: ✭ 3,674 (+1033.95%)
Mutual labels:  encryption
Xorencryption
XOR encryption implementations for several languages.
Stars: ✭ 266 (-17.9%)
Mutual labels:  encryption
Encryptpad
Minimalist secure text editor and binary encryptor that implements RFC 4880 Open PGP format: symmetrically encrypted, compressed and integrity protected. The editor can protect files with passwords, key files or both.
Stars: ✭ 305 (-5.86%)
Mutual labels:  encryption
My Talks
List of my talks and workshops: security engineering, applied cryptography, secure software development
Stars: ✭ 261 (-19.44%)
Mutual labels:  encryption
Awesome Cryptography
A curated list of cryptography resources and links.
Stars: ✭ 3,475 (+972.53%)
Mutual labels:  encryption
Nxcrypt
NXcrypt - 'python backdoor' framework
Stars: ✭ 316 (-2.47%)
Mutual labels:  encryption
Dtls
DTLS 1.2 Server/Client implementation for Go
Stars: ✭ 313 (-3.4%)
Mutual labels:  encryption
Ciphersweet
Fast, searchable field-level encryption for PHP projects
Stars: ✭ 299 (-7.72%)
Mutual labels:  encryption

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

Third part

  • Copyright (C) 2010 The Android Open Source Project, applied to:
    • Base64 (third.part.android.util.Base64) original comes from here
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].