Giter VIP home page Giter VIP logo

androidencryptionexample's Introduction

Android Arsenal

Android Encryption Example

This example encrypts the inputted string using AES, encrypts the key via RSA, and does the reverse when the decrypt button is clicked.

We start by encrypting the plain text with AES

byte[] iv = AESEncryptDecrypt.aesEncrypt(plainTextInputStream,
                "secret key".toCharArray(),
                "AES/ECB/PKCS5PADDING",
                encOutputStream);

We then combine the outputted IV and the key we used:

byte[] combined = Util.concat("secret key".getBytes(), iv);

Lastly we encryt the IV and key using an RSA public key:

byte[] encryptedAESKeyIV = RSAEncryptDecrypt.encryptRSA(combined, rsaKey.getPublic());

========================

This is an encryption example of RSA and AES (CBC, ECB, CTR) 256 bit key on android with unit tests. I have tried to provide a good and secure example by showcasing:

  • AES 256 bit key
  • CBC/CTR/ECB example
  • using salt for key derivation
  • streams for arbitrary data sizes
  • unit tests
  • RSA 2048 bit
  • Spongy Castle (Android version of Bouncy Castle encryption library)

AndroidEncryptionExample

Prerequisite

In order to build the apk and run tests you must have the JCE (Java Cryptogrpahy Extension) Unlimited Strength policy jars installed for your JRE runtime.

If you do not do this then you will see the error:

java.lang.RuntimeException: java.security.InvalidKeyException: Illegal key size or default parameters

Testing/Building

To run the unit tests

./gradlew clean test

To build and install apk:

./gradlew clean installDebug

androidencryptionexample's People

Contributors

brianplummer avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

androidencryptionexample's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.