Skip to content

Latest commit

 

History

History
77 lines (61 loc) · 2.95 KB

README.md

File metadata and controls

77 lines (61 loc) · 2.95 KB

Encryptor

Text encryptor.

Coverage status Java compatibility Maven Central release License


❇ Introduction

Encrypts texts in a simple way.

❓ How to use

  1. Add one of the options below to the pom.xml file:

Using Maven Central (recomended):

<dependency>
  <groupId>io.github.wniemiec-data-java</groupId>
  <artifactId>encryptor</artifactId>
  <version>LATEST</version>
</dependency>

Using GitHub Packages:

<dependency>
  <groupId>wniemiec.data.java</groupId>
  <artifactId>encryptor</artifactId>
  <version>LATEST</version>
</dependency>
  1. Run
$ mvn install
  1. Use it
[...]

import wniemiec.data.java.Encryptors;
import wniemiec.data.java.Encryptor;

[...]

Encryptor md5Encryptor = Encryptors.md5();

System.out.println( md5Encryptor.encrypt("Hello World") );

📖 Documentation

Property Type Description Default
encrypt text: String Text to be encripted -

🚩 Changelog

Details about each version are documented in the releases section.

🤝 Contribute!

See the documentation on how you can contribute to the project here.

📁 Files

/

Name Type Description
dist Directory Released versions
docs Directory Documentation files
src Directory Source files