endecoR is encryption and decryption library for Base64 using AES-128 & Cipher
- Strong Base64 encryption
- Uses Cipher Algorithm
- Uses AES 128
Use the software project management tool maven to install endecoR.
Goto pom.xml file and add this dependency
<dependency>
<groupId>com.emretufekci</groupId>
<artifactId>endecoR</artifactId>
<version>0.1</version>
</dependency>
- plainText: String
- secretKey: SecretKey
encrypt(plainText, secretKey)
- encryptedText: String
- secretKey: SecretKey
encrypt(encryptedText, secretKey)
This function will return SecretKey via using AES128
secretKeyGenerator()
This function will convert SecretKey to String
SecretKey2Str(secretKey)
This function will convert String to SecretKey
Str2SecretKey(secretKeyStr)
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
You can feel free to use library, developed by Emre and it is under MIT license.