All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.megatronking.stringfog.plugin.StringFogMode Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show 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 - 2024 Weber Informatics LLC | Privacy Policy