Presentation is loading. Please wait.

Presentation is loading. Please wait.

Windows Core Security1© 2006 Microsoft Corp Cryptography: Helping Number Theorists Bring Home the Bacon Since 1977 Dan Shumow SDE Windows Core Security.

Similar presentations


Presentation on theme: "Windows Core Security1© 2006 Microsoft Corp Cryptography: Helping Number Theorists Bring Home the Bacon Since 1977 Dan Shumow SDE Windows Core Security."— Presentation transcript:

1 Windows Core Security1© 2006 Microsoft Corp Cryptography: Helping Number Theorists Bring Home the Bacon Since 1977 Dan Shumow SDE Windows Core Security dshumow@microsoft.com

2 Windows Core Security2© 2006 Microsoft Corp Outline Introduction Symmetric Key Encryption Key Distribution: Diffie-Hellman Key Generation Elliptic Curve Cryptography

3 Windows Core Security3© 2006 Microsoft Corp Introduction Cryptography, what is it and why should we care? –Cryptography is the science of communicating secretly. –Today so much communication is done over the internet and radio waves, and these media are very prone to eavesdropping. Cryptography allows people to communicate securely across these media.

4 Windows Core Security4© 2006 Microsoft Corp Cryptography Allows Alice to communicate with Bob without being overheard by Eavesdropper Eve. Alice Bob Eve

5 Windows Core Security5© 2006 Microsoft Corp Symmetric Key Encryption Alice and Bob share a key K. They use an encryption function c=E k (p). p is the plaintext and c is the ciphertext. It has to be reversible: p=D k (c). If Alice wants to send Bob a message m she computes c = E K (m) and sends Bob c. Bob computes m = D K (c).

6 Windows Core Security6© 2006 Microsoft Corp Symmetric Key Encryption Want it to be hard to compute p given c. So if Eve doesn’t know K it is hard for her to compute m even if she intercepts c. Want E k and D k to be easy to compute. So there is little overhead to communication Want K to be hard to calculate given p and c. Otherwise if Eve can guess parts of the message she can recover the key.

7 Windows Core Security7© 2006 Microsoft Corp Symmetric Key Encryption Examples: –Substitution Ciphers: Substitute each letter in the alphabet for another one. –One Time Pads: A key that is the same length as the message, used only once. –Modern Ciphers Stream Ciphers: RC4 Block Ciphers: DES, AES

8 Windows Core Security8© 2006 Microsoft Corp Symmetric Key Encryption Attacks on Encryption Algorithms: –Substitution Ciphers: Frequency Attacks –One Time Pads are provably secure. –Modern Attacks: Linear Cryptanalysis looks for a linear relationship between plaintext and ciphertext. (Known Plaintext Attack.) Differential Cryptanalysis looks at how differences in plaintext cause differences in ciphertext. (Chosen Plaintext Attack.)

9 Windows Core Security9© 2006 Microsoft Corp Symmetric Key Encryption Modern Encryption Algorithm Design Techniques –Confusion and Diffusion Diffusion means many bits of the plaintext (possibly all) affect each bit of the ciphertext. Confusion means there is a low statistical bias of bits in the ciphertext. –Non-Linearity: The encryption function is not linear (represented by a small matrix) Prevents Linear Cryptanalysis.

10 Windows Core Security10© 2006 Microsoft Corp Symmetric Key Encryption Problem: Key Distribution –Can’t keep using same key, Eve will eventually recover K. –Need to establish shared secret key: Could agree to physically meet and establish keys. But what if you want to communicate with someone on the other side of the world? Key distribution is a big problem.

11 Windows Core Security11© 2006 Microsoft Corp Diffie-Hellman Key Generation Basic Idea: 1.Alice and Bob agree on an integer g. 2.(a) Alice secretly chooses integer x, computes X = g x and sends it to Bob. (b) Bob secretly chooses integer y, computes Y = g y and sends it to Alice. 3.(a) Alice computes Y x =(g y ) x =g xy. (b) Bob computes X y =(g x ) y =g xy. 4.Alice and Bob both share g xy which they can use to create a secret key.

12 Windows Core Security12© 2006 Microsoft Corp Diffie-Hellman Key Generation Wait!! It’s not secure. If Eve overhears what g, X, and Y are she can compute: x = log g X and y = log g Y And use this information to calculate g xy. To make this secure Alice and Bob pick a large prime number P and reduce everything mod P (take the remainder after division by P)

13 Windows Core Security13© 2006 Microsoft Corp Diffie-Hellman Key Generation New and Improved Idea: 1.Alice and Bob agree on an integer g and prime P. 2.(a) Alice secretly chooses integer x, computes X = g x mod P and sends it to Bob. (b) Bob secretly chooses integer y, computes Y = g y mod P and sends it to Alice. 3.(a) Alice computes Y x mod P =(g y ) x mod P =g xy mod P. (b) Bob computes X y mod P =(g x ) y mod P =g xy mod P. 4.Alice and Bob both share the value g xy mod P which they can use to create a secret key.

14 Windows Core Security14© 2006 Microsoft Corp Diffie-Hellman Key Generation By adding the prime P into the equation we now need to make sure that g is a “generator” of P. This means that for every integer x in {1,2,3,…,P-1} there exists an integer d such that: x = g d mod P. d is called the “discrete log” of g mod P.

15 Windows Core Security15© 2006 Microsoft Corp Diffie-Hellman Key Generation Why Does This Work? 1.Because the positive integers less than P form a multiplicative, cyclic group with generator g. 2.It is hard to compute the discrete log of a generator mod P. Given these two things: 1.This algorithm works. 2.It is hard for Eve to calculate g xy mod P.

16 Windows Core Security16© 2006 Microsoft Corp Groups A group is a set G with a binary operation ·:G×G→G with the following properties: 1.Associativity: a(bc)=(ab)c 2.Identity Element: there exists e in G, such that for all a in G ea=ae=a. 3.Inverses: for all a in G there exists an element a -1 in G such that aa -1 = a -1 a = e

17 Windows Core Security17© 2006 Microsoft Corp Special Groups Abelian Groups are groups that have a fourth axiom 4.Commutative: for all a and b in G ab = ba Cyclic Groups are groups that have a generator g. Where g is an element of G such that for all a in G: a = g x where x is a positive integer. Note that all Cyclic groups are Abelian. Can you see why?

18 Windows Core Security18© 2006 Microsoft Corp Special Groups Multiplicative Groups are groups where the operation is called multiplication. Example: the group of n×n invertible matrices. Additive Groups are groups where the operation is called addition. Additive Groups are abelian. Example: the integers.

19 Windows Core Security19© 2006 Microsoft Corp Diffie-Hellman Key Generation What does this all mean for Diffie-Hellman Key Generation? Answer: It means that Diffie-Hellman will work as a key exchange algorithm in any cyclic group where computing discrete logarithms is hard.

20 Windows Core Security20© 2006 Microsoft Corp Elliptic Curve Cryptography Elliptic Curves are a way of modifying existing crypto systems like DH to make them “stronger.” “Stronger” means the expected time of an attack is longer with equal key sizes. This allows us to use smaller key sizes and therefore speed up the whole process. This makes ECC very useful for small devices like phones or other embedded systems.

21 Windows Core Security21© 2006 Microsoft Corp Elliptic Curves An Elliptic Curve is such an alternate cyclic group. The group consists of all points of the form: y 2 = x 3 + ax + b. Where x, y, a, and b are all elements of a field F.

22 Windows Core Security22© 2006 Microsoft Corp Fields A field is a set that has mathematical operations multiplication and addition that behave in nice ways. Basically a field is any set that you can do everything from your high school algebra class in.

23 Windows Core Security23© 2006 Microsoft Corp Fields A field F is a set S along with two binary operations (+,·) that have the following properties: 1.S contains two distinct elements 0 and 1 2.(S-{0},·) is a multiplicative group, with identity 1. 3.(S,+) is an additive group, with identity 0. 4.Multiplication is distributive on the left and the right: a·(b+c) = a·b+a·c (a+b)·c = a·c+b·c

24 Windows Core Security24© 2006 Microsoft Corp Elliptic Curves Group operation: Let P = (x P,y P ) and Q = (x Q,y Q ) be points on the an Elliptic Curve E. Then: R = P + Q = (x R,y R ) is defined by: x R = s 2 -x P -x Q y R =-y P +s(x P -x R ) where: s = (y P -y Q )/(x P -x Q ) if x P ≠x Q or s = (3x P 2 +a)/(2y P 2 ) if x P =x Q Identity: A “point at infinity” is added to the set of points on the curve. This point is infinitely far along the y access.

25 Windows Core Security25© 2006 Microsoft Corp Elliptic Curves Intuition: If you have 2 points on this curve, they define a line that intersects the curve at 1 other point. Addition is derived from this. Inverses are reflections about the x access.

26 Windows Core Security26© 2006 Microsoft Corp Elliptic Curve Cryptography Newer and more Improved Idea: 1.Alice and Bob agree on an Elliptic Curve E (specified by the field F and parameters a, b) and a base point g on E. 2.(a) Alice secretly chooses integer x, computes X = xg and sends it to Bob. (b) Bob secretly chooses integer y, computes Y = yg and sends it to Alice. 3.(a) Alice computes: xY = x(yg) =xyg. (b) Bob computes: yX = y(xg) =yxg=xyg. 4.Alice and Bob both share the point xyg which they can use to create a secret key.

27 Windows Core Security27© 2006 Microsoft Corp Elliptic Curve Cryptography In the preceding example all math is done in the group defined by E. Exponentiation is taken to be iterative addition. Because Elliptic Curves are groups we are guaranteed that we can perform all these operations. Computing logarithms in elliptic curves is difficult, so Eve can not recover the secret values and determine the shared value xyg.

28 Windows Core Security28© 2006 Microsoft Corp References Eric W. Weisstein. "Elliptic Curve." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/EllipticCurve.htmlMathWorld http://mathworld.wolfram.com/EllipticCurve.html Eric W. Weisstein et al. "Group." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/Group.htmlMathWorld http://mathworld.wolfram.com/Group.html Eric W. Weisstein. "Field." From MathWorld--A Wolfram Web Resource. http://mathworld.wolfram.com/Field.htmlMathWorldhttp://mathworld.wolfram.com/Field.html http://en.wikipedia.org/wiki/Group_%28mathematics%29 http://en.wikipedia.org/wiki/Field_(mathematics) http://en.wikipedia.org/wiki/Elliptic_curves


Download ppt "Windows Core Security1© 2006 Microsoft Corp Cryptography: Helping Number Theorists Bring Home the Bacon Since 1977 Dan Shumow SDE Windows Core Security."

Similar presentations


Ads by Google