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

soot.jimple.infoflow.config.PreciseCollectionStrategy Maven / Gradle / Ivy

The newest version!
package soot.jimple.infoflow.config;

/**
 * Allows to configure the strategy to use with collections and maps.
 */
public enum PreciseCollectionStrategy {
	/**
	 * Noe support for precise container access (default) 
	 */
	NONE,
	
	/**
	 * Supports maps with constant access, e.g.
	 * map.put("a", getSource());
	 * sink(map.get("b"));
	 * will not trigger a leak.
	 * Note that you will need to use the Summary taint wrapper in order to get proper support. 
	 */
	CONSTANT_MAP_SUPPORT
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy