Skip to content

robinkanters/easencrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EasEncrypt

The simple encryption library for Java.

Introduction

The Java encryption and cipher APIs can be a bit challenging, especially for people who are inexperienced in encryption. This library is meant to be an abstraction/simplification so that everyone can easily integrate RSA/DSA and/or AES/DES into their projects.

Example

First, initialize the encryptors with just 3 lines of code:

// Initialize the RSA cipher. This can be swapped out for a custom implementation.
AsymmetricEncrypter rsaEncrypter = new RsaEncrypter();

// Generate a keypair. Since this is the default Java keypair, it's compatible with external code.
KeyPair keyPair = rsaEncrypter.generateKeyPair();

// Initialize an encrypter with a cipher (which can be swapped out for other implementations).
LongTextEncrypter encrypter = new LongTextEncrypterImpl(new DesCipher(), rsaEncrypter);

...and you're off to the races! Now just encrypt and decrypt whenever you like:

Encrypt

String encrypted = encrypter.encrypt("Hello world!", keyPair.getPublic());

Decrypt

String decrypted = encrypter.decrypt(encrypted, keyPair.getPrivate()); // "Hello world!"

Installation

Since EasEncrypt is only hosted on Github, you need to install JitPack into your gradle project:

repositories {
    ...
    maven { url "https://jitpack.io" }
}

Then, you can add EasEncrypt to your dependencies:

dependencies {
    compile 'com.github.robinkanters:easencrypt:0.1'
}

Your final build.gradle file will look something like this:

group 'com.yourname'
version '1.0-SNAPSHOT'

apply plugin: 'java'

sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
    mavenCentral()
    maven { url "https://jitpack.io" }
}

dependencies {
    // your other dependencies here
    
    compile 'com.github.robinkanters:easencrypt:0.1'
    
    // your other dependencies here
}

Bitcoin tipjar

Bitcoin tipjar

License

EasEncrypt is distributed under the GNU General Public License v2.0. Please see the official documentation or the LICENSE file in this repository for more information.

About

The simple encryption library for Java.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages