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.
- Host: GitHub
- URL: https://github.com/insprill/ez-encrypt
- Owner: Insprill
- License: apache-2.0
- Created: 2021-07-27T01:06:46.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-18T09:38:25.000Z (over 3 years ago)
- Last Synced: 2025-03-10T14:08:28.860Z (over 1 year ago)
- Topics: encryption-decryption, encryption-library, java
- Language: Java
- Homepage:
- Size: 192 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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]
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
## 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