/EZ-Encrypt

A light-weight Java library that makes AES encryption simple.

Primary LanguageJavaApache License 2.0Apache-2.0

Contributors Forks Stargazers Issues Apache License 2.0

Logo

EZ-Encrypt

A light-weight Java library that makes AES encryption simple.
View Javadocs »

Report Bug · Request Feature

Notice:
EZ-Encrypt is now feature-complete. Bug fixes and maintenance will still be provided.

Table of Contents

  1. Usage
  2. Compiling
  3. Contributing
  4. License

About The Project

EZ-Encrypt was developed as an easy way to securely encrypt data without having to write all the overhead yourself.

Usage

Implementing in your project

Maven Central

Maven

<dependency>
    <groupId>net.nsprill</groupId>
    <artifactId>EZ-Encrypt</artifactId>
    <version>version</version>
</dependency>

Gradle (Groovy)

dependencies {
    implementation 'net.insprill:EZ-Encrypt:version'
}

Gradle (Kotlin)

dependencies {
    implementation("net.insprill:EZ-Encrypt:version")
}

Compiling

To compile EZ-Encrypt, you need JDK 8 or higher and an internet connection.
Clone this repo, then run ./gradlew build from your terminal.
You can find the compiled jar in the build/libs directory.
If you want the compiled jar published to your local Maven repo, run ./gradlew publishToMavenLocal.

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create.
Any contributions you make are greatly appreciated!
If you're new to contributing to open-source projects, you can follow this guide.

License

Distributed under the Apache 2.0 License. See LICENSE for more information.