As of August 2020 the site you are on (wiki.newae.com) is deprecated, and content is now at rtfm.newae.com.

Changes

Jump to: navigation, search

Template Attacks

1,453 bytes added, 18:39, 25 May 2016
Picking POIs: Added section
=== Picking POIs ===
There are several ways to pick the most important points in each of the traces. Generally, the aim is to find points that vary strongly between different operations (subkeys or Hamming weights). The simplest method -- the one that we'll use here -- is the 'TODO; want to write tutorial first'sum of differences'' method. The algorithm for the sum of difference method is:* For every operation <math>k</math> and every sample <math>i</math>, find the average power <math>M_{k, i}</math>. For instance, if there are <math>T_k</math> traces where we performed operation <math>k</math>, then this average is <math>M_{k, i} = \frac{1}{T_k} \sum_{j=1}^{T_k} t_{j, i}</math> * After finding all of the means, calculate all of their absolute pairwise differences. Add these up. This will give one "trace" which has peaks where the samples are usually different. The calculation looks like <math>D_{i} = \sum_{k_1, k_2} |M_{k_1, i} - M_{k_2, i}|</math> An example of this sum of differences is: [[File:Template-Sum-Of-Difference.png|600px]] * The peaks of <math>D_i</math> show the most important points, but we need to satisfy point 1 from above - we need to pick some peaks that aren't too close. One algorithm to do this is:# Pick the highest point in <math>D_i</math> and save this value of <math>i</math> as a point of interest. (ie: <math>i = argmax(D_i)</math>)# Throw out the nearest <math>N</math> points (where <math>N</math> is the minimum spacing between POIs).# Repeat until enough POIs have been selected.
== Analyzing the Data ==
Approved_users
510
edits

Navigation menu