Text encryptor.
Encrypts texts in a simple way.
- Add one of the options below to the pom.xml file:
<dependency>
<groupId>io.github.wniemiec-data-java</groupId>
<artifactId>encryptor</artifactId>
<version>LATEST</version>
</dependency>
<dependency>
<groupId>wniemiec.data.java</groupId>
<artifactId>encryptor</artifactId>
<version>LATEST</version>
</dependency>
- Run
$ mvn install
- Use it
[...]
import wniemiec.data.java.Encryptors;
import wniemiec.data.java.Encryptor;
[...]
Encryptor md5Encryptor = Encryptors.md5();
System.out.println( md5Encryptor.encrypt("Hello World") );
Property | Type | Description | Default |
---|---|---|---|
encrypt | text: String |
Text to be encripted | - |
Details about each version are documented in the releases section.
See the documentation on how you can contribute to the project here.
Name | Type | Description |
---|---|---|
dist | Directory |
Released versions |
docs | Directory |
Documentation files |
src | Directory |
Source files |