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:
“... the Ovarian Theory of Literature, or, rather, its complement, the Testicular Theory. A recent camp follower ... of this explicit theory is ... Norman Mailer, who has attributed his own gift, and the literary gift in general, solely and directly to the possession of a specific pair of organs. One writes with these organs, Mailer has said ... and I have always wondered with what shade of ink he manages to do it.”
—Cynthia Ozick (b. 1928)
“Freudianism is much more nearly a religion than a science, inasmuch as the relation between analyst and patient has a great deal in common with that between priest and communicant at confessional, and such ideas as the Oedipus complex, the superego, the libido, and the id exert an effect upon the converted which is almost identical with what flows to the devout Christian from godhead, trinity, grace, and immortality.”
—Robert Nisbet (b. 1913)
“The simile sets two ideas side by side; in the metaphor they become superimposed.”
—F.L. Lucas (18941967)
“The enthusiastic uprising of the people in our cause, is our great reliance; and we can not safely give it any check, even though it overflows, and runs in channels not laid down in any chart.”
—Abraham Lincoln (18091865)