com.github.megatronking.stringfog.plugin.StringFogMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin Show documentation
Show all versions of gradle-plugin Show documentation
A String encryption Library for Android
package com.github.megatronking.stringfog.plugin;
/**
* Define how the encrypted string presents in java class.
*/
public enum StringFogMode {
/**
* Replace the origin string with an encrypted and base64 encoded string.
*/
base64,
/**
* Replace the origin string with an encrypted byte array.
*
* Warning: this mode will increase the apk file size.
*/
bytes
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy