Explicit Flows and Side Channels
Information flows can be divided in two major categories. The simplest one is explicit flow, where some secret is explicitly leaked to a publicly observable variable. In the following example, the secret in the variable h flows into the publicly observable variable l.
var l, h l := hThe other flows fall into the side channel category. For example, in the timing attack or in the power analysis attack, the system leaks information through, respectively, the time or power it takes to perform an action depending on a secret value.
In the following example, the attacker can deduce if the value of h is one or not by the time the program takes to finish:
var l, h if h = 1 then (* do some time-consuming work *) l := 0Another side channel flow is the implicit information flow, which consists in leakage of information through the program control flow. The following program (implicitly) discloses the value of the secret variable h to the variable l. In this case, since the h variable is boolean, all the bits of the variable of h is disclosed (at the end of the program, l will be 3 if h is true, and 42 otherwise).
var l, h if h = true then l := 3 else l := 42Read more about this topic: Information Flow (information Theory)
Famous quotes containing the words explicit, flows, side and/or channels:
“I think taste is a social concept and not an artistic one. Im willing to show good taste, if I can, in somebody elses living room, but our reading life is too short for a writer to be in any way polite. Since his words enter into anothers brain in silence and intimacy, he should be as honest and explicit as we are with ourselves.”
—John Updike (b. 1932)
“A saint is good who wanders constantly.
Water is good which flows continuously.”
—Punjabi proverb, trans. by Gurinder Singh Mann.
“There is hardly such a thing as a war in which it makes no difference who wins. Nearly always one side stands more or less for progress, the other side more or less for reaction.”
—George Orwell (19031950)
“Not too many years ago, a childs experience was limited by how far he or she could ride a bicycle or by the physical boundaries that parents set. Today ... the real boundaries of a childs life are set more by the number of available cable channels and videotapes, by the simulated reality of videogames, by the number of megabytes of memory in the home computer. Now kids can go anywhere, as long as they stay inside the electronic bubble.”
—Richard Louv (20th century)