
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 core Show documentation
Show all versions of core Show documentation
A String encryption Library for Android
The newest version!
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 - 2025 Weber Informatics LLC | Privacy Policy