EncryptionManager is a simple project for encrypting data using matrixtranslocation. It is important to note that this type of encryption is not the most secure method of encryption. However, it offers a certain level of encryption
At first copy the .kt file in the github repo above. Then simply create a new String which is equal to the encryption() function. Add the String you want to encrypt as parameter.
var encrypted: String = EncryptionManager.encryption("ADD STRING HERE")At first copy the .kt file in the github repo above. Then simply create a new String which is equal to the decryption() function. Add the encrypted String as parameter of the method.
var decrypted: String = EncryptionManager.decryption("ADD ENCRYPTED STRING HERE")There is no dependency needed for the methods to work. Kotlin and the associated Java Runtime are the only requirements.