89
Unusual Side Channel Countermeasure Ideas (that lend themselves to some form of provability)

U n u s u a l Side Channel Countermeasure Ideas

  • Upload
    scot

  • View
    29

  • Download
    0

Embed Size (px)

DESCRIPTION

U n u s u a l Side Channel Countermeasure Ideas (that lend themselves to some form of provability). The Solutions’ Galaxy. The Solutions’ Galaxy. Hamster Wheel Keys Eric Brier, David Naccache, Nigel Smart. A common practice. ID, i. - PowerPoint PPT Presentation

Citation preview

Page 1: U n u s u a l   Side Channel Countermeasure Ideas

Unusual Side Channel Countermeasure Ideas

(that lend themselves to some form of provability)

Page 2: U n u s u a l   Side Channel Countermeasure Ideas

The Solutions’ Galaxy

Page 3: U n u s u a l   Side Channel Countermeasure Ideas

The Solutions’ Galaxy

Page 4: U n u s u a l   Side Channel Countermeasure Ideas

Hamster Wheel KeysEric Brier, David Naccache, Nigel Smart

Page 5: U n u s u a l   Side Channel Countermeasure Ideas

k

A common practiceIn the past several authors proposed to prevent side

channel attacks by having a key evolve in time.

The typical setting is the following:

ID, ik0=f(ID,k)

ki

ki=H(H(…H(k0)…)

secure communication using ki

move ki to RAMwrite ki+1=H(ki) in NVMerase ki from NVM

Page 6: U n u s u a l   Side Channel Countermeasure Ideas

k

The time consuming part

ID, ik0=f(ID,k)

ki

ki=H(H(…H(k0)…)

secure communication using ki

move ki to RAMwrite ki+1=H(ki) in NVMerase ki from NVM

Page 7: U n u s u a l   Side Channel Countermeasure Ideas

Implemented SolutionsRepeated application of H

Hashing trees, even patented.

Page 8: U n u s u a l   Side Channel Countermeasure Ideas

IssuesRepeated application of H: The system slows down

with time.

Hashing trees: Clumsy bookkeeping and sensitive to card tearing.

Most importantly: we want to quantify leakage, i.e. model leakage depending on the H we use.

Page 9: U n u s u a l   Side Channel Countermeasure Ideas

The AlternativeH(k) = a kb mod p

Why?

Because the terminal has an easy shortcut:

Hi(k) = au kv mod pwhere

u=(bi-1)/(b-1) mod(p) and v=bi mod (p)

Page 10: U n u s u a l   Side Channel Countermeasure Ideas

Quick ImplementationHi(k) = au kv mod p

where u=(bi-1)/(b-1) mod(p) and v=bi mod (p)

Precompute C=k a1/(b-1)

Precompute D=1/a

Hi(k) = DCv mod p

Page 11: U n u s u a l   Side Channel Countermeasure Ideas

Variants

H(k) = {akb mod 3, akb mod 5,…, akb mod pi}

Advantage: Word operations instead of long-integer arithmetic. Note that different a and b values could be used for different coordinates.

However, as will be seen later, this is less secure wrt side channel leakage as each coordinate can be an independent target to side channel analysis.

Page 12: U n u s u a l   Side Channel Countermeasure Ideas

Before We ProceedWe do not claim the invention of these PRNGs!

The main contribution of this work is :

- Stress that one can capitalize on the shortcut offered by their arithmetic properties to very simply implement key-evolving smart-card based protocols.

- Analyze the resilience of these generators to leakage of a piece of the key.

Page 13: U n u s u a l   Side Channel Countermeasure Ideas

Realistic Assumptionsa, k and p can be arbitrary and secret. No penalty.

b would typically be of moderate size because of the burden of exponentiation on the card’s size.

Hence, we should reasonably assume that b is public.

Page 14: U n u s u a l   Side Channel Countermeasure Ideas

Leakage ModelAt each iteration some bits of axb mod p and x leak.

Question: Under which assumptions can we infer k?

Advantage of looking at the problem from this angle: we have algebraic tools to analyze multivariate modular equations.

The variables in question are the chunks of axb that the side channel does not provide at each session.

Page 15: U n u s u a l   Side Channel Countermeasure Ideas

H(x) = x2 mod nThis is the BBS generator.

If less than log log n bits leak at each step then this is secure under the factoring assumption even when n is known to the attacker.

If n is known to the attacker and each operation leaks “more” bits of x, then x can be inferred. Analysis of “more” in two slides.

If leakage is in between or n unknown: open problem.

Page 16: U n u s u a l   Side Channel Countermeasure Ideas

H(x) = x2 mod pSee Gomez, Gutierrez and Ibeas for known p.

If ¾ of x leak than x is revealed. (Same performance as brutal linearization).

But we can do better.

Consider the equation (A+x)2=B+y mod p

Here A and B is what leaks via side channel. Denote this equation E

Gomez, Gutierrez and Ibeas “Cryptanalysis of the quadratic generator“

Page 17: U n u s u a l   Side Channel Countermeasure Ideas

Consider all the equations of the type xi Ej which are verified modulo nj with i+2j2d

This gives a constraint of the order of n to the

power of the sum of the j for i+2j2d, which equals d(d+1)(2d+1)/6

The degrees of freedom on all linerarized variables is of the order n to the power the sum of the (i+j) for i+2jd, which gives d(d+1)^2

We hence get a size ratio < the quotient of these two sizes, which simplfies into (2d+1)/6/(d+1). This quantity tends to 1/3 when d.

Page 18: U n u s u a l   Side Channel Countermeasure Ideas

If H(x)=xe mod n, the constraints are sont i+ejed.We get the same contraintes with more freedom

i.e. d(d+1)(6+e+e^2+2de+2de^2).

The factorized ratio is then 2(2d+1)/(6+e+e^2+2de+2de^2)

This tends 2/(e^2+e) when d tends to infinity.

As e increases the attacker’s handicap increases very quickly.

Page 19: U n u s u a l   Side Channel Countermeasure Ideas

H(x) = x+P on an ECCSee Gutierrez and Ibeas for known p.

If 5/6 of x leak than x is revealed.

For unknown P or unknown ECC: open problem.

Same techniques should normally apply but we did not check in detail.

Gutierrez and Ibeas, « inferring sequences produced by a linear congruential generator on elliptic curves missing high-order bits »

H(x) = 2x on an ECC

Page 20: U n u s u a l   Side Channel Countermeasure Ideas

Practical RecommendationsH(k) = a kb mod n

Use unknown a, unknown composite n and b=8.

a and k should be of the size of n.

Use only ¼ of the bits of H(k) as key material.

Use one bit out of four in H(k) as key material.

Page 21: U n u s u a l   Side Channel Countermeasure Ideas

Quick ImplementationLet C=f(1,ID,MasterKey)=k a1/7

Let D=f(2,ID,MasterKey)=1/a

Solve and personalize k and a in the card

The terminal uses the shortcut formula:

Hi(k) = DCv mod n where v=8i mod (n)

Page 22: U n u s u a l   Side Channel Countermeasure Ideas

k

A Possible Implementation

ID, iC=f(1,ID,k)

ki

ki=DCv mod nsecure communication using ki

move ki to RAMwrite ki+1=aki

8 in NVMerase ki from NVM

D=f(2,ID,k)v=8i mod(n)

Page 23: U n u s u a l   Side Channel Countermeasure Ideas

An Ideal Power Attack Countermeasure

(in 3 slides)

Jean-Max Dutertre, Amir Pasha Mirbaha, David Naccache, Assia Tria

Page 24: U n u s u a l   Side Channel Countermeasure Ideas

IdeaPower the µP from a photovoltaic panel facing a powerful LED.

+-

Vss

VccVccµP IO

CLKRST

Page 25: U n u s u a l   Side Channel Countermeasure Ideas

Constructing the DeviceWe are currently ordering a photovoltaic panel about the size of a

smart card and an OLED panel about the same size.

Step 1: Place both panels face-to-face, have the OLED glow to its maximal capacity and check that the derived power allows to power the µP.

LED PV Panel

Page 26: U n u s u a l   Side Channel Countermeasure Ideas

Step 2: Characterize the energy transfer-rate as function of resistor value.

Step 3: Construct a generic power attack isolation board.

+-

Vss

VccVccµP IO

CLKRST

Constructing the Device

Page 27: U n u s u a l   Side Channel Countermeasure Ideas

For More on PV Physicshttp://en.wikipedia.org/wiki/Solar_cell

Page 28: U n u s u a l   Side Channel Countermeasure Ideas

Can’t Do Less

David Naccache, Christof Paar, Florian Praden

Page 29: U n u s u a l   Side Channel Countermeasure Ideas

Investors deal with two questions

- How to get funds?Logistics

- How to spend funds rationally?Tactics & Strategy

Here we address the second.

Page 30: U n u s u a l   Side Channel Countermeasure Ideas

The Subleq MachineSubleq is a Turing-complete machine

having only one instruction. subleq a b c

*(b)=*(b)-*(a) if the result is negative or zero, go to c

else execute the next instruction.

Page 31: U n u s u a l   Side Channel Countermeasure Ideas

The Subleq MachineSince subleq has only three arguments

and since there is no confusion of instructions possible (there is only one!), a subleq code can be regarded as a sequence of triples.

a1 b1 c1

a2 b2 c2

a3 b3 c3

:

Page 32: U n u s u a l   Side Channel Countermeasure Ideas

…interleaved with dataSince data can be embedded in the

code, the sequence of triples can be interleaved with data. For instance:

a1 b1 c1data1 data2a2 b2 c2data3a3 b3 c3

:

Page 33: U n u s u a l   Side Channel Countermeasure Ideas

How does it work?*b = *b-*a;

if (*b0) program_counter = c;

else program_counter =

program_counter+3;

Page 34: U n u s u a l   Side Channel Countermeasure Ideas

GenealogySubleq is an OISC (“One Instruction Set

Computer) which comes from the Minsky machine concept.

The Minsky machine is a register machine with only two instructions: “increment” and “decrement-and-branch”.

Page 35: U n u s u a l   Side Channel Countermeasure Ideas

Allowing for comfortMemory is loaded with instructions and data

altogether (no distinction).

Hence the code can potentially self-modify and consider that any cell is a, b or c.

We can pre-store constants (like 0,1 etc)

e.g. we devote a cell called Z to contain zero, N to contain -1

Page 36: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

subleq Z Z c

Page 37: U n u s u a l   Side Channel Countermeasure Ideas

JMP c

subleq Z Z c

Page 38: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

subleq a a $+1

Page 39: U n u s u a l   Side Channel Countermeasure Ideas

CLR a

subleq a a $+1

Page 40: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

CLR bsubleq a Z $+1subleq Z b $+1CLR Z

Page 41: U n u s u a l   Side Channel Countermeasure Ideas

MOV a b

subleq b b $+1 *b=0subleq a Z $+1 Z=-*asubleq Z b $+1 *b=0-(-*a)=*a

subleq Z Z $+1 Z=0

Page 42: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

subleq a Z $+1subleq b Z $+1    CLR csubleq Z c $+1CLR Z

Page 43: U n u s u a l   Side Channel Countermeasure Ideas

ADD a b c

subleq a Z $+1 Z=0-*asubleq b Z $+1     Z=-*a-*bsubleq c c $+1 *c=*c-*c=0subleq Z c $+1 *c=0+*a+*bsublez Z Z $+1 Z=0

Page 44: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?CLR tCLR s    subleq a t $+1subleq b s $+1subleq s t $+1 CLR c CLR s subleq t s $+1subleq s c $+1

Page 45: U n u s u a l   Side Channel Countermeasure Ideas

SUB a b csubleq t t $+1 *t=0subleq s s $+1    *s=0subleq a t $+1 *t=-*asubleq b s $+1 s=-*bsubleq s t $+1 t=-*a+*b subleq c c $+1 *c=0 subleq s s $+1 *s=0 subleq t s $+1 *s=0-(-*a+*b)=*a-*bsubleq s c $+1 *c=0-(*a-*b)=*b-*a

Page 46: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?CLR tsubleq a t $+1    CLR ssubleq t s $+1subleq b s c

Page 47: U n u s u a l   Side Channel Countermeasure Ideas

BLE a b csubleq t t $+1 t=0subleq a t $+1     *t=-*asubleq s s $+1 *s=0subleq t s $+1 *s=*asubleq b s c *s=*a-*b

if *a-*b0 goto c

Page 48: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?CLR tsubleq a t $+1    CLR ssubleq b s $+1subleq s t $+1 subleq N t c

Page 49: U n u s u a l   Side Channel Countermeasure Ideas

BHI a b csubleq t t $+1 *t=0subleq a t $+1     *t=-*asubleq s s $+1 *s=0subleq b s $+1 *s=-*bsubleq s t $+1 *t=-*a+*bsubleq N t c *t=-*a+*b-(-1)

if *b-*a+10 goto c

Page 50: U n u s u a l   Side Channel Countermeasure Ideas

What have we got so far?JMP a goto aMOV a b *b=*aSUB a b c *c=*b-*aADD a b c *c=*b+*aBHI a b c if *b-*a+10 goto c

if *b<*b+1*a goto c

if *b<*a goto c if *a>*b goto c

BLE a b c if *a-*b0 goto c if *a*b goto c

CLR a *a=0

Page 51: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?CLR u;v;w MOV b vsubleq N w $+1subleq u u $+1 subleq a u $+1CLR csubleq u c $+1subleq w v $+4subleq Z Z $-8

Page 52: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?CLR u;v;w *u=*v=*w=0 MOV b v *v=*bsubleq N w $+1 *w=0-(-1)=1subleq u u $+1 *u=0subleq a u $+1 *u=-*aCLR c *c=0subleq u c $+1subleq w v $+4subleq Z Z $-8

Page 53: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=0-(-1)=1 *u=-*a *c=0subleq u c $+1subleq w v $+4subleq Z Z $-8

Page 54: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=1 *u=-*a *c=0subleq u c $+1subleq w v $+4subleq Z Z $-8

Page 55: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=1 *u=-*a *c=0subleq u c $+1 *c=*c-*u=*c+*asubleq w v $+4subleq Z Z $-8

Page 56: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=1 *u=-*a *c=0subleq u c $+1 *c=*c+*asubleq w v $+4 *v=*v-*w if…subleq Z Z $-8

Page 57: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=1 *u=-*a *c=0subleq u c $+1 *c=*c+*asubleq w v $+4 *v=*v-1 if…subleq Z Z $-8

Page 58: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=1 *u=-*a *c=0subleq u c $+1 *c=*c+*asubleq w v $+4 *v-- if…subleq Z Z $-8

Page 59: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=1 *u=-*a *c=0subleq u c $+1 *c=*c+*asubleq w v $+4 *v--; if(*v0)subleq Z Z $-8

Page 60: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=1 *u=-*a *c=0subleq u c $+1 *c=*c+*asubleq w v $+4 *v--; if(*v0)subleq Z Z $-8 else

Page 61: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*w=1 *c=0subleq u c $+1 *c=*c+*asubleq w v $+4 *v--; if(*v0)subleq Z Z $-8 else

Page 62: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*c=0subleq u c $+1 *c=*c+*asubleq w v $+4 *v--; if(*v0)subleq Z Z $-8 else

Page 63: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*c=0subleq u c $+1 *c=*c+*asubleq w v $+4 *v--; if(*v0)subleq Z Z $-8 else

Page 64: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? *v=*b

*c=0 *c=*c+*a

*v--; if(*v0)else

Page 65: U n u s u a l   Side Channel Countermeasure Ideas

MUL a b c *v=*b

*c=0 *c=*c+*a

*v--; if(*v0)else

Page 66: U n u s u a l   Side Channel Countermeasure Ideas

MUL a b c

*v=*b *c=0 *c=*c+*a

*v--; if(*v0)else

Page 67: U n u s u a l   Side Channel Countermeasure Ideas

MUL a b c

*v=*b *c=0 *c=*c+*a

*v--; if(*v0)else

Page 68: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

MOV a L1 data Z data ZL1: data Z

Page 69: U n u s u a l   Side Channel Countermeasure Ideas

BRX a

MOV a L1 *L1=*a data Z data ZL1: data Z

Page 70: U n u s u a l   Side Channel Countermeasure Ideas

What does this do? subleq b Z L1subleq Z Z L2

L1 subleq Z Z $+1subleq Z b c

L2 subleq Z Z $+1

Page 71: U n u s u a l   Side Channel Countermeasure Ideas

BEQ b c subleq b Z L1 Z=-*b if Z0subleq Z Z L2 else reset Z

L1 subleq Z Z $+1 reset Zsubleq Z b c *b=*b-0 if *b0

L2 subleq Z Z $+1

c

Page 72: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

MOV b vMOV a wCLR csubleq N c $+1subleq w v $+4subleq Z Z $-8

Page 73: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

MOV b v *v=*bMOV a w *w=*aCLR c *c=0subleq N c $+1 *c=*c-(-1)subleq w v $+4subleq Z Z $-8

Page 74: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

MOV b v *v=*bMOV a w *w=*aCLR c *c=0subleq N c $+1 *c++subleq w v $+4 *v=*v-*w if(*v0)

subleq Z Z $-8 else

Page 75: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

MOV b v *v=*bMOV a w *w=*aCLR c *c=0subleq N c $+1 *c++subleq w v $+4 *v=*v-*w if(*v0)

subleq Z Z $-8 else

Page 76: U n u s u a l   Side Channel Countermeasure Ideas

What does this do?

*v=*b*w=*a*c=0*c++*v=*v-*w

if(*v0)else

Page 77: U n u s u a l   Side Channel Countermeasure Ideas

DIV a b c

*v=*b

*c=0*c++*v=*v-*a

if(*v0)else

Page 78: U n u s u a l   Side Channel Countermeasure Ideas

DIV a b c

*v=*b*c=0*c++*v=*v-*a

if(*v0)else

Page 79: U n u s u a l   Side Channel Countermeasure Ideas

DIV a b c

*v=*b*c=0*c++*v=*v-*a

if(*v0)else

Page 80: U n u s u a l   Side Channel Countermeasure Ideas

What else do we need?Boolean operations such as AND, XOR.

Assuming that we have AND, we can design the XOR:

)BA(2BAAB2)AB(2)AB(2BA i

7

0ii

1ii

7

0ii

ii

7

0ii

i

Page 81: U n u s u a l   Side Channel Countermeasure Ideas

Where is all this going?The machine can do everything a

smartcard can do.

Still, it’s execution is hyper-regular.

Eliminates instruction-dependent leakage. Only leakage is data-dependent.

Page 82: U n u s u a l   Side Channel Countermeasure Ideas

Where is all this going?A “reductionist” approach.

Push all security issues into the subleq machine.

If the subleq machine is side-channel resistant then no matter what algorithm we implement on it, the implementation is side-channel resistant!

Page 83: U n u s u a l   Side Channel Countermeasure Ideas

Where is all this going?But any algorithm can be coded on the

machine.

Hence it suffices to concentrate all effort on protecting the machine.

But the machine is very simple, hence (conceivably!) much easier to secure than an AES or RSA coprocessor.

Page 84: U n u s u a l   Side Channel Countermeasure Ideas

Hardware Architecture

RAM

• We assume that we have a RAM initialized with the code.

Read[i]

M[i]

Page 85: U n u s u a l   Side Channel Countermeasure Ideas

Hardware Architecture

RAM

• We assume that we have a RAM initialized with the code.

Read[i+1]

M[i+1]

Page 86: U n u s u a l   Side Channel Countermeasure Ideas

Hardware Architecture

RAM

• We assume that we have a RAM initialized with the code.

Read[i+2]

M[i+2]

Page 87: U n u s u a l   Side Channel Countermeasure Ideas

Hardware Architecture

RAM

• We assume that we have a RAM initialized with the code.

Write[i+1]

M[i+1]-M[i]

Page 88: U n u s u a l   Side Channel Countermeasure Ideas

Hardware Architecture

RAM

• We assume that we have a RAM initialized with the code.

Write[i+1]

M[i+1]-M[i]

Page 89: U n u s u a l   Side Channel Countermeasure Ideas

What Have We Done?Implemented the machine in FPGA (600 CLBs),

wrote a compiler. Circa 7 subleqs per 8-bit assembler instruction.But the machine is so simple that clock can be

very fast.Explored variants:SUBXORLEQ, SUBLEQXOR, SUBANDLEQ, etc.Paper underway (soon on ePrint).