Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.31 KB

README.md

File metadata and controls

41 lines (27 loc) · 1.31 KB

java8-cipher

Tutorial project for encryption and signing data/messages easily with symmetric and asymmetric keys using Java.

You free to easy the classes directly from Maven Repository as helper classes, or dig through the code and implement your own code on your project.

Installation

Checkout the project and import as a Maven project

Usage

Obtain the last version from Maven Repository:

<dependency>
    <groupId>br.com.joaovarandas</groupId>
    <artifactId>jcipher</artifactId>
    <version>0.1</version>
</dependency>

There are basically 3 helper classes available:

  • AES - For symmetric encryption
  • RSA - For signing and asymmetric encryption
  • Hybrid - For hybrid encryption with asymmetric keys

See tests for usage samples.

Links

Support

Please open an issue for support.

Contributing

Please contribute using Github Flow. Create a branch, add commits, and open a pull request.