An open API service indexing awesome lists of open source software.

https://github.com/insprill/ez-encrypt

A light-weight Java library that makes AES encryption simple.
https://github.com/insprill/ez-encrypt

encryption-decryption encryption-library java

Last synced: 6 months ago
JSON representation

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

Awesome Lists containing this project

README

          

[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![Apache License 2.0][license-shield]][license-url]



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-central-shield]][license-url]
#### Maven

```xml

net.nsprill
EZ-Encrypt
version

```

#### Gradle (Groovy)

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

#### Gradle (Kotlin)

```groovy
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](https://docs.github.com/en/get-started/quickstart/contributing-to-projects) guide.

## License

Distributed under the Apache 2.0 License. See [`LICENSE`][license-url] for more information.

[contributors-shield]: https://img.shields.io/github/contributors/Insprill/EZ-Encrypt.svg?style=for-the-badge
[contributors-url]: https://github.com/Insprill/EZ-Encrypt/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/Insprill/EZ-Encrypt.svg?style=for-the-badge
[forks-url]: https://github.com/Insprill/EZ-Encrypt/network/members
[stars-shield]: https://img.shields.io/github/stars/Insprill/EZ-Encrypt.svg?style=for-the-badge
[stars-url]: https://github.com/Insprill/EZ-Encrypt/stargazers
[issues-shield]: https://img.shields.io/github/issues/Insprill/EZ-Encrypt.svg?style=for-the-badge
[issues-url]: https://github.com/Insprill/EZ-Encrypt/issues
[license-shield]: https://img.shields.io/github/license/Insprill/EZ-Encrypt.svg?style=for-the-badge
[license-url]: https://github.com/Insprill/EZ-Encrypt/blob/master/LICENSE
[maven-central-shield]: https://img.shields.io/maven-central/v/net.insprill/EZ-Encrypt
[maven-central-url]: https://mvnrepository.com/artifact/net.insprill/EZ-Encrypt