The ray attack on RSA

Size: px
Start display at page:

Download "The ray attack on RSA"

Transcription

1 The ray attack on RSA Andreas de Vries Talk at the societas universalis and BIG ev, Ruhr-Universität Bochum May 16, 2002

2 Survey 1. RSA cryptosystems 2. Classical attacks on RSA 3. The ray attack 4. Another failure, or: What is gained?

3 References Friedrich Ludwig Bauer, Decrypted Secrets. Methods and Maxims of Cryptology, 2nd ed., Springer-Verlag, Heidelberg und Berlin, Johannes A. Buchmann, Introduction to Cryptography, Springer-Verlag, New York, Thomas H. Cormen, Charles E. Leiserson, and Ronald L. Rivest, Introduction to Algorithms, McGraw-Hill, New York, W. Diffie and M. E. Hellman, New directions in cryptography, IEEE Trans. Inform. Theory 22 (1976), no. 6, Donald E. Knuth, The Art of Computer Programming. 3rd Sorting and Searching, 3rd ed., Addison-Wesley, Reading, Friedhelm Padberg, Elementare Zahlentheorie, 2nd ed., Spektrum Akademischer Verlag, Heidelberg Berlin, Hans Riesel, Prime Numbers and Computer Methods for Factorization, Birkhäuser, Boston, Ronald L. Rivest, Adi Shamir, and Leonard M. Adleman, A method for obtaining digital signatures and public-key cryptosystems, Comm. ACM 21 (1978),

4 History of RSA 1976: The idea of public key cryptosystems is born by Diffie and Hellman [DH76] 1978: Rivest, Shamir and Adleman [RSA78] publish a public key cryptosystem, becoming the most popular one nowadays. Its applications range from authentication to digital signatures; it is widely considered to be an essential of future e-commerce. There were numerous attacks on RSA. Its strongness bases on the difficulty to factorize integers as well as to compute the discrete logarithm. 3

5 RSA cryptosystems In a public key system each participant has both a public key and a private key being held secret. All participants (traditionally: Alice and Bob) create their own pair of public and private keys: P A, S A for Alice, and P B, S B for Bob. Each participant keeps his private key secret, but can reveal his public key to anyone or can even publish it. 4

6 RSA key generation procedure 1. Select at random two large prime numbers p, q > , p q. 2. Compute n = pq and the Carmichael function λ(n) = lcm(p 1,q 1). 3. Select an integer d relatively prime to λ(n). 4. Compute (by the extended Euclidean algorithm) e such that ed = 1 mod λ(n) 5. Publish P = (e,n) as the public key, keep secret S = (d,n) as the private key. 5

7 Encryption and decryption The domain of the messages is Z n. For each participant of a cryprosystem, the four-tuple (e,d, p,q) N 4 is called (individual) RSA key system. The key parameter e is the encryption exponent, d the decryption exponent, and n the RSA modulus. Encryption of message m Z n is performed with a public key P = (e,n) by the function E : Z n Z n, E(m) = m e mod n. (1) Decryption of ciphertext c Z n is done with the private key S = (d,n) by the mapping D : Z n Z n, D(c) = c d mod n. (2) 6

8 Alice sends a message to Bob 7

9 The reverse procedure: Alice signs a message 8

10 Correctness of RSA The correctness of RSA is proved by the corollary of Carmichael: m x = m x mod λ(n) mod n for m Z n. since then m ed = m mod n for each m Z n, i.e., E and D are inverse functions on Z n (D E = E D = id Zn ). For details see [Bau00, Buc01, CLR90]. 9

11 Symmtries of RSA key parameter plots Plots of the possible RSA key parameter pairs (e,d) for p = 11, q = 83, and p = 19 and q = 131. All possible RSA key parameters (e,d) form a pattern in the square lattice [0,λ(n) 1] 2 N 2, symmetric to both square diagonals. 10

12 Classical RSA attacks Initial situation: an eavesdropper knows P = (e, n) and ciphertext c. Factorization of n: Havinging the factorization n = pq, knowledge of e easily yields d. But factorization of numbers n = pq with p,q > (hence n > bits), is difficult with current technology, if p q > Otherwise n can be factorized efficiently by exhaustive search of n + and n satisfying n = n 2 + n2, beginning at n + = n and n = 0: These two integers then obey n ± = p±q 2. It can be proved that, knowing the public key (e,n), factoring the RSA modulus n is as difficult as finding the secret key (d,n), see [Buc01],

13 CPU running time for factorization on a 10GHz computer Factorization is the most efficient known attack on RSA. The fastest known factorization method, the number field sieve of John Pollard in magnitude of the number bits operations CPU time n seconds n hours n days n mio years n years 12

14 Chosen-plaintext attack. The eavesdropper systematically encrypts all messages m with Alice s public key P A until he achieves the ciphertext c. This attack is efficient if the set of messages m is small or if the message m is short. Pad each message such that its size is of the magnitude of the modulus. Use probabilistic encryption, where a given plaintext is mapped onto several ciphertexts. 13

15 Chosen-ciphertext attack: The eavesdropper chooses a random integer s and asks Alice to digitally sign the innocent-looking message c = s e c mod n. From her answer m = c d it is easy to recover the original message, because m = m s mod n. Never sign unknown documents; before signing a document, always apply a one-way hash function to it. 14

16 Message iteration: Let c i Z n be iteratively defined as c 0 = m, c i = c e i 1 mod n (i = 1,2,...). (c i = m ei mod n, and c 1 = c is the ciphertext.) The smallest index k with c k+1 = c 1 is the iteration exponent or period of m: it exactly shows (!) the original message, c k = m. Such a period k uniquely exists: k = ord λ(n) (e). Thus it divides λ(λ(n)) and ϕ(λ(n)). To avoid an efficient attack by iteration, λ(λ(n)), ord λ(n) (e) > This condition is satisfied especially by doubly secure primes p, q. 15

17 Broadcast decryption by the low-exponent attack. Suppose Alice sends the same message to l different participants whose public keys are and l e. P i = (e,n i ), where gcd(n i,n j ) = 1, An eavesdropper receiving the l ciphertexts c i = me mod n i can compute c = c i mod n 1 n l by the Chinese remainder theorem. But if the product n 1 n l is great enough, then c = m e. This yields m = e c, and the original message is computed. Hence each public keys P i = (e i,n i ) P j = (e j,n j ) and any broadcast message m must satisfy e i e j or m e i, m e j > n i n j 16

18 Broadcast decryption by the common modulus attack: If a plain text m is encrypted twice using P i = (e i,n), i = 1,2, with a common modulus n and gcd(e 1,e 2 ) = 1, then m can be recovered c i = m e i mod n: 1. Compute x 1, x 2 with x 1 e 1 + x 2 e 2 = 1 (by extended Euclidean algorithm) 2. For i with x i < 0, determine y such that 1 = yc i + kn, and set x i = y. 3. Calculate c 1 x 1 c 2 x 2 = m x 1 e 1 +x 2 e 2 = m mod n. Therefore: Never send identical messages to receivers with the same modulus and relatively prime encryption exponents. 17

19 The Euler function ray attack

20 The ω-function and the order of a number modulo n Definition 1 Let be n N, n > 1, and Z n the multiplicative group modulo n. Then the order ord n (m) of m Z n is given by If gcd (m,n) > 1, ord n (m) =. ord n (m) = min{k N : k > 0, m k = 1 mod n}. (3) For example, 2 = {1, 2, 4} in Z 7, and ord 7 (2) = 3. Note: ϕ(7) = λ(7) = 6. 19

21 Lemma 2 Let be m,n N, with gcd(m,n) = 1 and m < n. Then ord n (m) λ(n). (4) Moreover, log m n ord n (m) λ(n) n 1. (5) Proof. Carmichael s theorem and the Lagrange theorem. 20

22 Definition 3 Let be m,n Z, n 0. Then we define the function ω m (n) = { ordn (m) if gcd(m,n) = 1, 0 if gcd(m,n) 1. (6) We have m ω m(n) = 1 mod n for m,n Z, n 0. Substituting n by ω m (n), m ω m(ω m (n)) = 1 mod ω m (n). (7) ( a = b mod 0 has to be understood as a = b. ) By iteration, m ω(r) m (n) = 1 mod ω (r 1) m (n), for r 1, (8) where ω (r) m (n) = ω m(ω m (...(ω m (n))...)). 21

23 Theorem 4 Let be d,e,n N, such that n > 1, gcd(e,n) = 1, and d e = 1 mod λ(n). Then ω e (ω e (n)) > 0, and d = e ω e(ω e (n)) 1 mod ω e (n). (9) Proof. First we note by (4) that ω e (n) λ(n). Therefore, de = 1 mod λ(n) implies d e = 1 mod ω e (n). (10) (If de 1 = kλ(n) for a k Z, then de 1 = k ω e (n), where k = kλ(n)/ω e (n).) If we had now ω e (ω e (n)) = 0, then e would divide ω e (n) and hence λ(n): But then there would be no d with de = 1 mod λ(n). Hence, ω e (ω e (n)) > 0. Moreover, by the cascading-ω equation (7) we have e ω e(ω e (n)) 1 e = 1 mod ω e (n). (11) Equation (9) follows immediately from (10) and (11). 22

24 Example 5 Let be n = 221 and e = 11. Then ω 11 (221) = 48, ω 11 (48) = 4, hence d = 11 3 = 35 mod 48. Therefore, the possible d < 221 are d = 35, 83, 131, 179. In fact, 221 = 13 17, and λ(221) = 48; this means that or d = = 1 mod λ(221), 23

25 The two shoulders on which Theorem 4 rests are equations (10) and (11). They can be extended to analogues for the following corollary. Corollary 6 Let be e,n,a,b N such that n > 1 and gcd(e,n) = 1, as well as λ(n) ω e (aω e (n)). Then the integer d = e bω e(aω e (n)) 1 mod aω e (n) (12) satisfies de = 1 mod aω e (n), and for any number m Z n we have m e d = m mod n. (13) If the integer a is such that ω e (aω e (n)) λ(n), then the unique d < λ(n) with de = 1 mod λ(n) is related to d by d = d mod aω e (n). (14) 24

26 Proof. Substituting n by aω e, from e ωm(n) = 1 mod n for any m Z we deduce that e bω e(aω e (n)) = 1 mod aω e (n). Especially, with (12) we have d e = e bω e(aω e (n)) 1 e = 1 mod aω e (n). (15) Thus, if λ(n) ω e (aω e (n)), we have m de mod aω e (n) mod n = m 1 mod aω e(n) mod n = m 1 mod λ(n) mod n = m mod n. (Note that λ(n) enters the scene in the second last equation to fulfill the equation for all m!) In turn, if ω e (aω e (n)) λ(n), then de = 1 mod λ(n) implies de = 1 mod aω e (n); thus (14) follows from (15).

27 Example 7 Let be n = 143 and e = 47. Then ω 47 (143) = 20, and with a = 2, b = 3, we have 3ω 47 (40) = 12, hence d = = 23 mod 40. Therefore, m ed = m 1081 = m mod 143. In fact, 143 = 11 13, and λ(143) = 60; i.e = 1 mod λ(143), or d =

28 Consequence: Computing the inverse of e mod λ(n) Given e and n relatively prime, corollary 6 enables us to choose an (almost) arbitrary multiple of the order ord n (e) > 0 to find an integer d, which, if small enough to divide λ(n), supplies a list of values, one of which satisfies ed = 1 mod λ(n); which, if being a multiple of λ(n), allows to compute d such that de = 1 mod (a ord n (e)). In particular, the Euler function is a multiple of both λ(n) and ord n (e). 26

29 Properties of composed numbers n = pq Let be p, q be prime, p q, and n = pq. There are 13 integers n < 50 with n = pq, and 30 ones with n < 100. n ϕ(n) λ(n) n ϕ(n) λ(n)

30 Graph of the Euler function for n = pq 28

31 Graph of the Euler function for n = pq 29

32 The Euler function rays In the graph of ϕ(n), (n,ϕ(n)) lies above the Euler function ray ( ( )) x f p (x) = x,(p 1) p 1. (16) Plots of ϕ(pq), and the rays f p for p = 2, 3, 5, 7, 11, 13, 17, 19,

33 The geometric structure of the Euler function Theorem 8 Let be n = pq, with p < q prime. For any integer p min N, p min p, we then have ( ) n ϕ(n) (p min 1) 1. (17) p min The inequality is strict, if p min < p. ( ) n Proof. ϕ(n) = (p 1) p 1, and ϕ(n) is a function of p: g(p) = ϕ(n) = n p n p + 1. Since g (p) = 1 + n/p 2 < 0, for fixed n the function g is strictly decreasing with respect to p, as long as p < q, i.e. as n/p 2 > 1. 31

34 Theorem 9 Let be p, q two primes p < q, e an integer with e > 1, and n = pq. Moreover define for a N the exponents δ e,n, γ e,a N by δ e,n = max{i N : e i lnn n} =, γ e,a = max{i N : e i a}, (18) lne as well as r ± = 1 ( ) ± 2 4n with = p + q + δ e,n. (19) 2 Then for any integers b, r N, r r p or q r r +, satisfying ( be f (r) n ) = 1 mod n, where f (r) = (r 1) r 1, (20) the Euler function value ϕ(n) can be computed by ϕ(n) = γ e,b + f (r) (21) 32

35 Proof. Real values for r ± always exist since the term in the square root is positive, 2 > (p + q) 2, i.e. 2 4n > (q p) 2 > 0. (p 1)(q 1) (r 1)(n/r 1) = 1 r (r2 r+n). Solving this quadratic equation with respect to r, straightforward calculation thus shows that the inequalities for r are equivalent to the inequalities ( n ) 0 (p 1)(q 1) (r 1) r 1 δ e,n, (22) which means that 0 ϕ(n) (r 1) ( n r 1 ) δ e,n. On the other hand, b being the multiplicative inverse of e r by the modular equation in (20), we have b = e j mod n for some j N, in particular for j = ϕ(n) r. But if j < δ e,n, b = e j, and j = γ e,b. 33

36 Example 10 Let be p = 11, q = 13, and e = 7. Then δ 7,143 = 2, and thus = 26, r ± = 13 ± 26. So r shall satisfy 8 r 11 or 13 r 18. For r = 8, e.g., we have ( n ) (r 1) r 1 = = ; Since = 108 mod 143, we achieve by the extended Euclidean algorithm b = 49 = 7 2 (because 1 = ), and with γ 7,49 = 2 we obtain ϕ(143) = γ 7,49 = 120. In fact, ϕ(143) =

37 Example 11 Let be p = , q = , and e = 2. Then n = , δ 2,n = 64, and thus = , r = , r + = For r = , e.g., we have ( n ) i = (r 1) r 1 = Since 2 i = mod n, we achieve by the extended Euclidean algorithm b = and with γ 2,b = 64 we obtain ϕ(n) = i + γ 2,b =

38 The coarse graining lemma It gives the step-width that a systematic and definite search for an appropriate Euler function ray factor r must have: Lemma 12 Let p, q be two primes, p < q, e an integer e > 1, and n = pq. Moreover let r + and δ e,n be defined as in theorem 9 by equations (18) and (19). Then Moreover, r + q > δ e,n 2. (23) p r > δ e,n 2 if δ e,pq < 2 3 (3p q). (24) 36

39 Proof. By 2 4pq = (q p) 2 + 2(p+q)δ e,pq + δe,pq 2 we achieve for δ e,pq > 0 r + = 1 ( ) + 2 4pq = 1 ( ) + (q p) 2 + 2(p + q)δ e,pq + δe,pq > 1 2 ( + q p) = 1 2 ( 2q + δe,pq ) = q + δ e,pq 2. Analogously, by the inequality in (24) we have 2(q p) δ e,pq < q + p, i.e. (q p) 2 + 2(q + p)δ e,pq + δe,pq 2 > (q p) 2 + 4(q p)δ e,pq + 4δe,pq 2 = (q p + 2δ e,pq ) 2. Therefore, r = 1 ( 2 < 1 2 (q p) 2 + 2(p + q)δ e,pq + δ 2 e,pq ( (q p) 2 + 4(p q)δ e,pq + 4δe,pq 2 ) ) = p δ e,pq 2.

40 The algorithm long rayattack ( e, n, r ) { // store an array a such that a[i] = mˆ(2ˆi) < n: a[0] = e; j = 1; while ( a[j-1] < n ) { a[j] = a[j-1] * a[j-1]; j++; } delta = 0; } while ( eˆ(delta + 1) <= n ) step = delta / 2; d = 0; r = nˆ(1/2); while ( d == 0 && r > 0 ) { ord = omega(e,n,r); delta++; if ( ord > 0 ) d = euclid( e, ord )[0]; else r -= step; } return d; 37

41 /** returns minimum i >= (r - 1) * (n/r - 1) such that mˆi = 1 mod n * returns 0 if i is not computable, and -1 if the algorithm fails */ long omega( m, n, r ) { if ( gcd(m,n)!= 1 ) return 0; else { i = (r - 1) * (n/r - 1); m = m % n; // determine b such that b * mˆi = 1 mod n: b = euclid (n, ( mˆi % n ) )[1] mod n; // determine maximum exponent gamma such that mˆgamma divides b: gamma = 0; for ( k = a.length - 1; k >= 0; k-- ) { if ( b >= a[k] ) { if ( b % a[k] == 0 ) { gamma += 2ˆk; b /= a[k]; } else break; // not a power of e } } i += gamma; if ( i > 0 && b!= 1 ) { i = - 1; // algorithm fails! } return i; } }

42 // euclid(m,n) = extended Euclidean algorithm // returning x0, x1 s.t. gcd(m,n) = x0 * m + x1 * n: long[] euclid( long m, long n) { x[] = {1,0}; u = 0, v = 1; mnegative = false, nnegative = false; } if ( m < 0 ) { m = -m; mnegative = true; } if ( n < 0 ) { n = -n; nnegative = true; } while ( n > 0 ) { // determine q and r such that m = qn + r: q = m / n; r = m % n; // replace: m = n; n = r; tmp = u; u = x[0] - q*u; x[0] = tmp; tmp = v; v = x[1] - q*v; x[1] = tmp; } if ( mnegative ) x[0] = -x[0]; if ( nnegative ) x[1] = -x[1]; return x; 39

43 Complexity analysis The running time of the algorithm is T ray (e, pq,r) = O((r p)lnr lne ln pq). The ln-terms are good, but with r = pq and given e we have T ray = O( pq ln pq) that is bad... 40

44 Another failure, or: What is gained? Mathematical innovations: the Euler function rays (never mentioned before) the ω-function as a generalization of the order of a number A failure? No, good news! e-commerce with RSA as cornerstone can go on... 41

45 Thank you for your attention! Prof. Dr. Andreas de Vries FH Südwestfalen University of Applied Sciences Haldener Straße 182 D Hagen 42

Definition: For a positive integer n, if 0<a<n and gcd(a,n)=1, a is relatively prime to n. Ahmet Burak Can Hacettepe University

Definition: For a positive integer n, if 0<a<n and gcd(a,n)=1, a is relatively prime to n. Ahmet Burak Can Hacettepe University Number Theory, Public Key Cryptography, RSA Ahmet Burak Can Hacettepe University abc@hacettepe.edu.tr The Euler Phi Function For a positive integer n, if 0

More information

Chapter 8 Public-key Cryptography and Digital Signatures

Chapter 8 Public-key Cryptography and Digital Signatures Chapter 8 Public-key Cryptography and Digital Signatures v 1. Introduction to Public-key Cryptography 2. Example of Public-key Algorithm: Diffie- Hellman Key Exchange Scheme 3. RSA Encryption and Digital

More information

Public Key Cryptography

Public Key Cryptography Public Key Cryptography Spotlight on Science J. Robert Buchanan Department of Mathematics 2011 What is Cryptography? cryptography: study of methods for sending messages in a form that only be understood

More information

Theme : Cryptography. Instructor : Prof. C Pandu Rangan. Speaker : Arun Moorthy CS

Theme : Cryptography. Instructor : Prof. C Pandu Rangan. Speaker : Arun Moorthy CS 1 C Theme : Cryptography Instructor : Prof. C Pandu Rangan Speaker : Arun Moorthy 93115 CS 2 RSA Cryptosystem Outline of the Talk! Introduction to RSA! Working of the RSA system and associated terminology!

More information

Lecture 1: Introduction to Public key cryptography

Lecture 1: Introduction to Public key cryptography Lecture 1: Introduction to Public key cryptography Thomas Johansson T. Johansson (Lund University) 1 / 44 Key distribution Symmetric key cryptography: Alice and Bob share a common secret key. Some means

More information

1 Recommended Reading 1. 2 Public Key/Private Key Cryptography Overview RSA Algorithm... 2

1 Recommended Reading 1. 2 Public Key/Private Key Cryptography Overview RSA Algorithm... 2 Contents 1 Recommended Reading 1 2 Public Key/Private Key Cryptography 1 2.1 Overview............................................. 1 2.2 RSA Algorithm.......................................... 2 3 A Number

More information

10 Public Key Cryptography : RSA

10 Public Key Cryptography : RSA 10 Public Key Cryptography : RSA 10.1 Introduction The idea behind a public-key system is that it might be possible to find a cryptosystem where it is computationally infeasible to determine d K even if

More information

RSA. Ramki Thurimella

RSA. Ramki Thurimella RSA Ramki Thurimella Public-Key Cryptography Symmetric cryptography: same key is used for encryption and decryption. Asymmetric cryptography: different keys used for encryption and decryption. Public-Key

More information

Slides by Kent Seamons and Tim van der Horst Last Updated: Oct 1, 2013

Slides by Kent Seamons and Tim van der Horst Last Updated: Oct 1, 2013 RSA Slides by Kent Seamons and Tim van der Horst Last Updated: Oct 1, 2013 Recap Recap Number theory o What is a prime number? o What is prime factorization? o What is a GCD? o What does relatively prime

More information

Lemma 1.2. (1) If p is prime, then ϕ(p) = p 1. (2) If p q are two primes, then ϕ(pq) = (p 1)(q 1).

Lemma 1.2. (1) If p is prime, then ϕ(p) = p 1. (2) If p q are two primes, then ϕ(pq) = (p 1)(q 1). 1 Background 1.1 The group of units MAT 3343, APPLIED ALGEBRA, FALL 2003 Handout 3: The RSA Cryptosystem Peter Selinger Let (R, +, ) be a ring. Then R forms an abelian group under addition. R does not

More information

CIS 551 / TCOM 401 Computer and Network Security

CIS 551 / TCOM 401 Computer and Network Security CIS 551 / TCOM 401 Computer and Network Security Spring 2008 Lecture 15 3/20/08 CIS/TCOM 551 1 Announcements Project 3 available on the web. Get the handout in class today. Project 3 is due April 4th It

More information

Cryptography. Course 1: Remainder: RSA. Jean-Sébastien Coron. September 21, Université du Luxembourg

Cryptography. Course 1: Remainder: RSA. Jean-Sébastien Coron. September 21, Université du Luxembourg Course 1: Remainder: RSA Université du Luxembourg September 21, 2010 Public-key encryption Public-key encryption: two keys. One key is made public and used to encrypt. The other key is kept private and

More information

Chapter 4 Asymmetric Cryptography

Chapter 4 Asymmetric Cryptography Chapter 4 Asymmetric Cryptography Introduction Encryption: RSA Key Exchange: Diffie-Hellman [NetSec/SysSec], WS 2008/2009 4.1 Asymmetric Cryptography General idea: Use two different keys -K and +K for

More information

Asymmetric Cryptography

Asymmetric Cryptography Asymmetric Cryptography Chapter 4 Asymmetric Cryptography Introduction Encryption: RSA Key Exchange: Diffie-Hellman General idea: Use two different keys -K and +K for encryption and decryption Given a

More information

Public-Key Cryptosystems CHAPTER 4

Public-Key Cryptosystems CHAPTER 4 Public-Key Cryptosystems CHAPTER 4 Introduction How to distribute the cryptographic keys? Naïve Solution Naïve Solution Give every user P i a separate random key K ij to communicate with every P j. Disadvantage:

More information

The RSA cryptosystem and primality tests

The RSA cryptosystem and primality tests Mathematics, KTH Bengt Ek November 2015 Supplementary material for SF2736, Discrete mathematics: The RSA cryptosystem and primality tests Secret codes (i.e. codes used to make messages unreadable to outsiders

More information

Security Issues in Cloud Computing Modern Cryptography II Asymmetric Cryptography

Security Issues in Cloud Computing Modern Cryptography II Asymmetric Cryptography Security Issues in Cloud Computing Modern Cryptography II Asymmetric Cryptography Peter Schwabe October 21 and 28, 2011 So far we assumed that Alice and Bob both have some key, which nobody else has. How

More information

Introduction to Modern Cryptography. Benny Chor

Introduction to Modern Cryptography. Benny Chor Introduction to Modern Cryptography Benny Chor RSA Public Key Encryption Factoring Algorithms Lecture 7 Tel-Aviv University Revised March 1st, 2008 Reminder: The Prime Number Theorem Let π(x) denote the

More information

Public Key Algorithms

Public Key Algorithms Public Key Algorithms Raj Jain Washington University in Saint Louis Saint Louis, MO 63130 Jain@cse.wustl.edu Audio/Video recordings of this lecture are available at: http://www.cse.wustl.edu/~jain/cse571-09/

More information

Public Key Cryptography. All secret key algorithms & hash algorithms do the same thing but public key algorithms look very different from each other.

Public Key Cryptography. All secret key algorithms & hash algorithms do the same thing but public key algorithms look very different from each other. Public Key Cryptography All secret key algorithms & hash algorithms do the same thing but public key algorithms look very different from each other. The thing that is common among all of them is that each

More information

CRYPTOGRAPHY AND NUMBER THEORY

CRYPTOGRAPHY AND NUMBER THEORY CRYPTOGRAPHY AND NUMBER THEORY XINYU SHI Abstract. In this paper, we will discuss a few examples of cryptographic systems, categorized into two different types: symmetric and asymmetric cryptography. We

More information

Lecture Notes, Week 6

Lecture Notes, Week 6 YALE UNIVERSITY DEPARTMENT OF COMPUTER SCIENCE CPSC 467b: Cryptography and Computer Security Week 6 (rev. 3) Professor M. J. Fischer February 15 & 17, 2005 1 RSA Security Lecture Notes, Week 6 Several

More information

The security of RSA (part 1) The security of RSA (part 1)

The security of RSA (part 1) The security of RSA (part 1) The modulus n and its totient value φ(n) are known φ(n) = p q (p + q) + 1 = n (p + q) + 1 The modulus n and its totient value φ(n) are known φ(n) = p q (p + q) + 1 = n (p + q) + 1 i.e. q = (n φ(n) + 1)

More information

Mathematical Foundations of Public-Key Cryptography

Mathematical Foundations of Public-Key Cryptography Mathematical Foundations of Public-Key Cryptography Adam C. Champion and Dong Xuan CSE 4471: Information Security Material based on (Stallings, 2006) and (Paar and Pelzl, 2010) Outline Review: Basic Mathematical

More information

RSA Algorithm. Factoring, EulerPhi, Breaking RSA. Çetin Kaya Koç Spring / 14

RSA Algorithm. Factoring, EulerPhi, Breaking RSA.   Çetin Kaya Koç Spring / 14 RSA Algorithm http://koclab.org Çetin Kaya Koç Spring 2018 1 / 14 Well-Known One-Way Functions Discrete Logarithm: Given p, g, and x, computing y in y = g x (mod p) is EASY Given p, g, y, computing x in

More information

Addition. Ch1 - Algorithms with numbers. Multiplication. al-khwārizmī. al-khwārizmī. Division 53+35=88. Cost? (n number of bits) 13x11=143. Cost?

Addition. Ch1 - Algorithms with numbers. Multiplication. al-khwārizmī. al-khwārizmī. Division 53+35=88. Cost? (n number of bits) 13x11=143. Cost? Ch - Algorithms with numbers Addition Basic arithmetic Addition ultiplication Division odular arithmetic factoring is hard Primality testing 53+35=88 Cost? (n number of bits) O(n) ultiplication al-khwārizmī

More information

Algorithmic Number Theory and Public-key Cryptography

Algorithmic Number Theory and Public-key Cryptography Algorithmic Number Theory and Public-key Cryptography Course 3 University of Luxembourg March 22, 2018 The RSA algorithm The RSA algorithm is the most widely-used public-key encryption algorithm Invented

More information

Asymmetric Encryption

Asymmetric Encryption -3 s s Encryption Comp Sci 3600 Outline -3 s s 1-3 2 3 4 5 s s Outline -3 s s 1-3 2 3 4 5 s s Function Using Bitwise XOR -3 s s Key Properties for -3 s s The most important property of a hash function

More information

Public Key Cryptography

Public Key Cryptography Public Key Cryptography Ali El Kaafarani 1 Mathematical Institute 2 PQShield Ltd. 1 of 44 Outline 1 Public Key Encryption: security notions 2 RSA Encryption Scheme 2 of 44 Course main reference 3 of 44

More information

Network Security Technology Spring, 2018 Tutorial 3, Week 4 (March 23) Due Date: March 30

Network Security Technology Spring, 2018 Tutorial 3, Week 4 (March 23) Due Date: March 30 Network Security Technology Spring, 2018 Tutorial 3, Week 4 (March 23) LIU Zhen Due Date: March 30 Questions: 1. RSA (20 Points) Assume that we use RSA with the prime numbers p = 17 and q = 23. (a) Calculate

More information

Discrete Mathematics GCD, LCM, RSA Algorithm

Discrete Mathematics GCD, LCM, RSA Algorithm Discrete Mathematics GCD, LCM, RSA Algorithm Abdul Hameed http://informationtechnology.pk/pucit abdul.hameed@pucit.edu.pk Lecture 16 Greatest Common Divisor 2 Greatest common divisor The greatest common

More information

RSA RSA public key cryptosystem

RSA RSA public key cryptosystem RSA 1 RSA As we have seen, the security of most cipher systems rests on the users keeping secret a special key, for anyone possessing the key can encrypt and/or decrypt the messages sent between them.

More information

Mathematics of Cryptography

Mathematics of Cryptography UNIT - III Mathematics of Cryptography Part III: Primes and Related Congruence Equations 1 Objectives To introduce prime numbers and their applications in cryptography. To discuss some primality test algorithms

More information

Solving Systems of Modular Equations in One Variable: How Many RSA-Encrypted Messages Does Eve Need to Know?

Solving Systems of Modular Equations in One Variable: How Many RSA-Encrypted Messages Does Eve Need to Know? Solving Systems of Modular Equations in One Variable: How Many RSA-Encrypted Messages Does Eve Need to Know? Alexander May, Maike Ritzenhofen Faculty of Mathematics Ruhr-Universität Bochum, 44780 Bochum,

More information

2. Cryptography 2.5. ElGamal cryptosystems and Discrete logarithms

2. Cryptography 2.5. ElGamal cryptosystems and Discrete logarithms CRYPTOGRAPHY 19 Cryptography 5 ElGamal cryptosystems and Discrete logarithms Definition Let G be a cyclic group of order n and let α be a generator of G For each A G there exists an uniue 0 a n 1 such

More information

1 Number Theory Basics

1 Number Theory Basics ECS 289M (Franklin), Winter 2010, Crypto Review 1 Number Theory Basics This section has some basic facts about number theory, mostly taken (or adapted) from Dan Boneh s number theory fact sheets for his

More information

LECTURE 5: APPLICATIONS TO CRYPTOGRAPHY AND COMPUTATIONS

LECTURE 5: APPLICATIONS TO CRYPTOGRAPHY AND COMPUTATIONS LECTURE 5: APPLICATIONS TO CRYPTOGRAPHY AND COMPUTATIONS Modular arithmetics that we have discussed in the previous lectures is very useful in Cryptography and Computer Science. Here we discuss several

More information

Number Theory & Modern Cryptography

Number Theory & Modern Cryptography Number Theory & Modern Cryptography Week 12 Stallings: Ch 4, 8, 9, 10 CNT-4403: 2.April.2015 1 Introduction Increasing importance in cryptography Public Key Crypto and Signatures Concern operations on

More information

Topics in Cryptography. Lecture 5: Basic Number Theory

Topics in Cryptography. Lecture 5: Basic Number Theory Topics in Cryptography Lecture 5: Basic Number Theory Benny Pinkas page 1 1 Classical symmetric ciphers Alice and Bob share a private key k. System is secure as long as k is secret. Major problem: generating

More information

Lecture V : Public Key Cryptography

Lecture V : Public Key Cryptography Lecture V : Public Key Cryptography Internet Security: Principles & Practices John K. Zao, PhD (Harvard) SMIEEE Amir Rezapoor Computer Science Department, National Chiao Tung University 2 Outline Functional

More information

Public Key Cryptography

Public Key Cryptography T H E U N I V E R S I T Y O F B R I T I S H C O L U M B I A Public Key Cryptography EECE 412 1 What is it? Two keys Sender uses recipient s public key to encrypt Receiver uses his private key to decrypt

More information

Cryptography IV: Asymmetric Ciphers

Cryptography IV: Asymmetric Ciphers Cryptography IV: Asymmetric Ciphers Computer Security Lecture 7 David Aspinall School of Informatics University of Edinburgh 31st January 2011 Outline Background RSA Diffie-Hellman ElGamal Summary Outline

More information

ECE 646 Lecture 8. RSA: Genesis, Security, Implementation & Key Generation

ECE 646 Lecture 8. RSA: Genesis, Security, Implementation & Key Generation ECE 646 Lecture 8 RSA: Genesis, Security, Implementation & Key Generation Public Key (Asymmetric) Cryptosystems Public key of Bob - K B Private key of Bob - k B Network Alice Encryption Decryption Bob

More information

RSA: Genesis, Security, Implementation & Key Generation

RSA: Genesis, Security, Implementation & Key Generation ECE 646 Lecture 8 RSA: Genesis, Security, Implementation & Key Generation Public Key (Asymmetric) Cryptosystems Public key of Bob - K B Private key of Bob - k B Network Alice Encryption Decryption Bob

More information

A New Attack on RSA with Two or Three Decryption Exponents

A New Attack on RSA with Two or Three Decryption Exponents A New Attack on RSA with Two or Three Decryption Exponents Abderrahmane Nitaj Laboratoire de Mathématiques Nicolas Oresme Université de Caen, France nitaj@math.unicaen.fr http://www.math.unicaen.fr/~nitaj

More information

Cryptography. P. Danziger. Transmit...Bob...

Cryptography. P. Danziger. Transmit...Bob... 10.4 Cryptography P. Danziger 1 Cipher Schemes A cryptographic scheme is an example of a code. The special requirement is that the encoded message be difficult to retrieve without some special piece of

More information

Methods of Public-Key Cryptography. Émilie Wheeler

Methods of Public-Key Cryptography. Émilie Wheeler Methods of Public-Key Cryptography Émilie Wheeler December 10, 2012 Contents 1 Introduction 2 2 Cryptosystems based on Elementary Number Theory 3 2.1 Elementary Number Theory Background............ 3 2.1.1

More information

Public Key 9/17/2018. Symmetric Cryptography Review. Symmetric Cryptography: Shortcomings (1) Symmetric Cryptography: Analogy

Public Key 9/17/2018. Symmetric Cryptography Review. Symmetric Cryptography: Shortcomings (1) Symmetric Cryptography: Analogy Symmetric Cryptography Review Alice Bob Public Key x e K (x) y d K (y) x K K Instructor: Dr. Wei (Lisa) Li Department of Computer Science, GSU Two properties of symmetric (secret-key) crypto-systems: The

More information

CPSC 467b: Cryptography and Computer Security

CPSC 467b: Cryptography and Computer Security CPSC 467b: Cryptography and Computer Security Michael J. Fischer Lecture 11 February 21, 2013 CPSC 467b, Lecture 11 1/27 Discrete Logarithm Diffie-Hellman Key Exchange ElGamal Key Agreement Primitive Roots

More information

Ti Secured communications

Ti Secured communications Ti5318800 Secured communications Pekka Jäppinen September 20, 2007 Pekka Jäppinen, Lappeenranta University of Technology: September 20, 2007 Relies on use of two keys: Public and private Sometimes called

More information

Cryptography and RSA. Group (1854, Cayley) Upcoming Interview? Outline. Commutative or Abelian Groups

Cryptography and RSA. Group (1854, Cayley) Upcoming Interview? Outline. Commutative or Abelian Groups Great Theoretical Ideas in CS V. Adamchik CS 15-251 Upcoming Interview? Lecture 24 Carnegie Mellon University Cryptography and RSA How the World's Smartest Company Selects the Most Creative Thinkers Groups

More information

CPE 776:DATA SECURITY & CRYPTOGRAPHY. Some Number Theory and Classical Crypto Systems

CPE 776:DATA SECURITY & CRYPTOGRAPHY. Some Number Theory and Classical Crypto Systems CPE 776:DATA SECURITY & CRYPTOGRAPHY Some Number Theory and Classical Crypto Systems Dr. Lo ai Tawalbeh Computer Engineering Department Jordan University of Science and Technology Jordan Some Number Theory

More information

Introduction to Modern Cryptography. Benny Chor

Introduction to Modern Cryptography. Benny Chor Introduction to Modern Cryptography Benny Chor RSA: Review and Properties Factoring Algorithms Trapdoor One Way Functions PKC Based on Discrete Logs (Elgamal) Signature Schemes Lecture 8 Tel-Aviv University

More information

NUMBER THEORY AND CODES. Álvaro Pelayo WUSTL

NUMBER THEORY AND CODES. Álvaro Pelayo WUSTL NUMBER THEORY AND CODES Álvaro Pelayo WUSTL Talk Goal To develop codes of the sort can tell the world how to put messages in code (public key cryptography) only you can decode them Structure of Talk Part

More information

Public Key Cryptography

Public Key Cryptography Public Key Cryptography Ali El Kaafarani Mathematical Institute Oxford University 1 of 74 Outline 1 Complexity measures 2 Algebra and Number Theory Background 3 Public Key Encryption: security notions

More information

YALE UNIVERSITY DEPARTMENT OF COMPUTER SCIENCE

YALE UNIVERSITY DEPARTMENT OF COMPUTER SCIENCE YALE UNIVERSITY DEPARTMENT OF COMPUTER SCIENCE CPSC 467a: Cryptography and Computer Security Notes 13 (rev. 2) Professor M. J. Fischer October 22, 2008 53 Chinese Remainder Theorem Lecture Notes 13 We

More information

CPSC 467b: Cryptography and Computer Security

CPSC 467b: Cryptography and Computer Security CPSC 467b: Cryptography and Computer Security Michael J. Fischer Lecture 9 February 6, 2012 CPSC 467b, Lecture 9 1/53 Euler s Theorem Generating RSA Modulus Finding primes by guess and check Density of

More information

10 Modular Arithmetic and Cryptography

10 Modular Arithmetic and Cryptography 10 Modular Arithmetic and Cryptography 10.1 Encryption and Decryption Encryption is used to send messages secretly. The sender has a message or plaintext. Encryption by the sender takes the plaintext and

More information

Circuit Complexity. Circuit complexity is based on boolean circuits instead of Turing machines.

Circuit Complexity. Circuit complexity is based on boolean circuits instead of Turing machines. Circuit Complexity Circuit complexity is based on boolean circuits instead of Turing machines. A boolean circuit with n inputs computes a boolean function of n variables. Now, identify true/1 with yes

More information

Cryptography. pieces from work by Gordon Royle

Cryptography. pieces from work by Gordon Royle Cryptography pieces from work by Gordon Royle The set-up Cryptography is the mathematics of devising secure communication systems, whereas cryptanalysis is the mathematics of breaking such systems. We

More information

Ma/CS 6a Class 3: The RSA Algorithm

Ma/CS 6a Class 3: The RSA Algorithm Ma/CS 6a Class 3: The RSA Algorithm By Adam Sheffer Reminder: Putnam Competition Signup ends Wednesday 10/08. Signup sheets available in all Sloan classrooms, Math office, or contact Kathy Carreon, kcarreon@caltech.edu.

More information

Overview. Background / Context. CSC 580 Cryptography and Computer Security. March 21, 2017

Overview. Background / Context. CSC 580 Cryptography and Computer Security. March 21, 2017 CSC 580 Cryptography and Computer Security Math for Public Key Crypto, RSA, and Diffie-Hellman (Sections 2.4-2.6, 2.8, 9.2, 10.1-10.2) March 21, 2017 Overview Today: Math needed for basic public-key crypto

More information

5199/IOC5063 Theory of Cryptology, 2014 Fall

5199/IOC5063 Theory of Cryptology, 2014 Fall 5199/IOC5063 Theory of Cryptology, 2014 Fall Homework 2 Reference Solution 1. This is about the RSA common modulus problem. Consider that two users A and B use the same modulus n = 146171 for the RSA encryption.

More information

Gurgen Khachatrian Martun Karapetyan

Gurgen Khachatrian Martun Karapetyan 34 International Journal Information Theories and Applications, Vol. 23, Number 1, (c) 2016 On a public key encryption algorithm based on Permutation Polynomials and performance analyses Gurgen Khachatrian

More information

Partial Key Exposure: Generalized Framework to Attack RSA

Partial Key Exposure: Generalized Framework to Attack RSA Partial Key Exposure: Generalized Framework to Attack RSA Cryptology Research Group Indian Statistical Institute, Kolkata 12 December 2011 Outline of the Talk 1 RSA - A brief overview 2 Partial Key Exposure

More information

CPSC 467b: Cryptography and Computer Security

CPSC 467b: Cryptography and Computer Security CPSC 467b: Cryptography and Computer Security Michael J. Fischer Lecture 9 February 14, 2013 CPSC 467b, Lecture 9 1/42 Integer Division (cont.) Relatively prime numbers, Z n, and φ(n) Computing in Z n

More information

1 What are Physical Attacks. 2 Physical Attacks on RSA. Today:

1 What are Physical Attacks. 2 Physical Attacks on RSA. Today: Today: Introduction to the class. Examples of concrete physical attacks on RSA A computational approach to cryptography Pseudorandomness 1 What are Physical Attacks Tampering/Leakage attacks Issue of how

More information

MATH 158 FINAL EXAM 20 DECEMBER 2016

MATH 158 FINAL EXAM 20 DECEMBER 2016 MATH 158 FINAL EXAM 20 DECEMBER 2016 Name : The exam is double-sided. Make sure to read both sides of each page. The time limit is three hours. No calculators are permitted. You are permitted one page

More information

Elliptic Curve Cryptography

Elliptic Curve Cryptography Elliptic Curve Cryptography Elliptic Curves An elliptic curve is a cubic equation of the form: y + axy + by = x 3 + cx + dx + e where a, b, c, d and e are real numbers. A special addition operation is

More information

The RSA public encryption scheme: How I learned to stop worrying and love buying stuff online

The RSA public encryption scheme: How I learned to stop worrying and love buying stuff online The RSA public encryption scheme: How I learned to stop worrying and love buying stuff online Anthony Várilly-Alvarado Rice University Mathematics Leadership Institute, June 2010 Our Goal Today I will

More information

dit-upm RSA Cybersecurity Cryptography

dit-upm RSA Cybersecurity Cryptography -upm Cybersecurity Cryptography José A. Mañas < http://www.dit.upm.es/~pepe/> Information Technology Department Universidad Politécnica de Madrid 4 october 2018 public key (asymmetric) public key secret

More information

Iterated Encryption and Wiener s attack on RSA

Iterated Encryption and Wiener s attack on RSA Iterated Encryption Euler s function Euler s function: φ(n) = {1 x n : gcd(x, n) = 1} Theorem (Euler) If n is a positive integer and m is a positive integer coprime to n then m φ(n) mod n = 1. Iterated

More information

Encryption: The RSA Public Key Cipher

Encryption: The RSA Public Key Cipher Encryption: The RSA Public Key Cipher Michael Brockway March 5, 2018 Overview Transport-layer security employs an asymmetric public cryptosystem to allow two parties (usually a client application and a

More information

Introduction to Cryptography. Lecture 6

Introduction to Cryptography. Lecture 6 Introduction to Cryptography Lecture 6 Benny Pinkas page 1 Public Key Encryption page 2 Classical symmetric ciphers Alice and Bob share a private key k. System is secure as long as k is secret. Major problem:

More information

COMP4109 : Applied Cryptography

COMP4109 : Applied Cryptography COMP409 : Applied Cryptography Fall 203 M. Jason Hinek Carleton University Applied Cryptography Day 3 public-key encryption schemes some attacks on RSA factoring small private exponent 2 RSA cryptosystem

More information

Chapter 11 : Private-Key Encryption

Chapter 11 : Private-Key Encryption COMP547 Claude Crépeau INTRODUCTION TO MODERN CRYPTOGRAPHY _ Second Edition _ Jonathan Katz Yehuda Lindell Chapter 11 : Private-Key Encryption 1 Chapter 11 Public-Key Encryption Apologies: all numbering

More information

5 Public-Key Encryption: Rabin, Blum-Goldwasser, RSA

5 Public-Key Encryption: Rabin, Blum-Goldwasser, RSA Leo Reyzin. Notes for BU CAS CS 538. 1 5 Public-Key Encryption: Rabin, Blum-Goldwasser, RSA 5.1 Public Key vs. Symmetric Encryption In the encryption we ve been doing so far, the sender and the recipient

More information

Breaking Plain ElGamal and Plain RSA Encryption

Breaking Plain ElGamal and Plain RSA Encryption Breaking Plain ElGamal and Plain RSA Encryption (Extended Abstract) Dan Boneh Antoine Joux Phong Nguyen dabo@cs.stanford.edu joux@ens.fr pnguyen@ens.fr Abstract We present a simple attack on both plain

More information

CPSC 467: Cryptography and Computer Security

CPSC 467: Cryptography and Computer Security CPSC 467: Cryptography and Computer Security Michael J. Fischer Lecture 14 October 23, 2017 CPSC 467, Lecture 14 1/42 Computing in Z n Modular multiplication Modular inverses Extended Euclidean algorithm

More information

Introduction to Modern Cryptography. Lecture RSA Public Key CryptoSystem 2. One way Trapdoor Functions

Introduction to Modern Cryptography. Lecture RSA Public Key CryptoSystem 2. One way Trapdoor Functions Introduction to Modern Cryptography Lecture 7 1. RSA Public Key CryptoSystem 2. One way Trapdoor Functions Diffie and Hellman (76) New Directions in Cryptography Split the Bob s secret key K to two parts:

More information

Introduction to Cybersecurity Cryptography (Part 4)

Introduction to Cybersecurity Cryptography (Part 4) Introduction to Cybersecurity Cryptography (Part 4) Review of Last Lecture Blockciphers Review of DES Attacks on Blockciphers Advanced Encryption Standard (AES) Modes of Operation MACs and Hashes Message

More information

Security II: Cryptography exercises

Security II: Cryptography exercises Security II: Cryptography exercises Markus Kuhn Lent 2015 Part II Some of the exercises require the implementation of short programs. The model answers use Perl (see Part IB Unix Tools course), but you

More information

Public-Key Encryption: ElGamal, RSA, Rabin

Public-Key Encryption: ElGamal, RSA, Rabin Public-Key Encryption: ElGamal, RSA, Rabin Introduction to Modern Cryptography Benny Applebaum Tel-Aviv University Fall Semester, 2011 12 Public-Key Encryption Syntax Encryption algorithm: E. Decryption

More information

Univ.-Prof. Dr. rer. nat. Rudolf Mathar. Written Examination. Cryptography. Tuesday, August 29, 2017, 01:30 p.m.

Univ.-Prof. Dr. rer. nat. Rudolf Mathar. Written Examination. Cryptography. Tuesday, August 29, 2017, 01:30 p.m. Cryptography Univ.-Prof. Dr. rer. nat. Rudolf Mathar 1 2 3 4 15 15 15 15 60 Written Examination Cryptography Tuesday, August 29, 2017, 01:30 p.m. Name: Matr.-No.: Field of study: Please pay attention to

More information

New attacks on RSA with Moduli N = p r q

New attacks on RSA with Moduli N = p r q New attacks on RSA with Moduli N = p r q Abderrahmane Nitaj 1 and Tajjeeddine Rachidi 2 1 Laboratoire de Mathématiques Nicolas Oresme Université de Caen Basse Normandie, France abderrahmane.nitaj@unicaen.fr

More information

Introduction to Cybersecurity Cryptography (Part 4)

Introduction to Cybersecurity Cryptography (Part 4) Introduction to Cybersecurity Cryptography (Part 4) Review of Last Lecture Blockciphers Review of DES Attacks on Blockciphers Advanced Encryption Standard (AES) Modes of Operation MACs and Hashes Message

More information

Cosc 412: Cryptography and complexity Lecture 7 (22/8/2018) Knapsacks and attacks

Cosc 412: Cryptography and complexity Lecture 7 (22/8/2018) Knapsacks and attacks 1 Cosc 412: Cryptography and complexity Lecture 7 (22/8/2018) Knapsacks and attacks Michael Albert michael.albert@cs.otago.ac.nz 2 This week Arithmetic Knapsack cryptosystems Attacks on knapsacks Some

More information

CPSC 467b: Cryptography and Computer Security

CPSC 467b: Cryptography and Computer Security Outline Quadratic residues Useful tests Digital Signatures CPSC 467b: Cryptography and Computer Security Lecture 14 Michael J. Fischer Department of Computer Science Yale University March 1, 2010 Michael

More information

Foundations of Network and Computer Security

Foundations of Network and Computer Security Foundations of Network and Computer Security John Black Lecture #9 Sep 22 nd 2005 CSCI 6268/TLEN 5831, Fall 2005 Announcements Midterm #1, next class (Tues, Sept 27 th ) All lecture materials and readings

More information

Lecture 5: Arithmetic Modulo m, Primes and Greatest Common Divisors Lecturer: Lale Özkahya

Lecture 5: Arithmetic Modulo m, Primes and Greatest Common Divisors Lecturer: Lale Özkahya BBM 205 Discrete Mathematics Hacettepe University http://web.cs.hacettepe.edu.tr/ bbm205 Lecture 5: Arithmetic Modulo m, Primes and Greatest Common Divisors Lecturer: Lale Özkahya Resources: Kenneth Rosen,

More information

8.1 Principles of Public-Key Cryptosystems

8.1 Principles of Public-Key Cryptosystems Public-key cryptography is a radical departure from all that has gone before. Right up to modern times all cryptographic systems have been based on the elementary tools of substitution and permutation.

More information

Introduction to Public-Key Cryptosystems:

Introduction to Public-Key Cryptosystems: Introduction to Public-Key Cryptosystems: Technical Underpinnings: RSA and Primality Testing Modes of Encryption for RSA Digital Signatures for RSA 1 RSA Block Encryption / Decryption and Signing Each

More information

Introduction to Cybersecurity Cryptography (Part 5)

Introduction to Cybersecurity Cryptography (Part 5) Introduction to Cybersecurity Cryptography (Part 5) Prof. Dr. Michael Backes 13.01.2017 February 17 th Special Lecture! 45 Minutes Your Choice 1. Automotive Security 2. Smartphone Security 3. Side Channel

More information

CS March 17, 2009

CS March 17, 2009 Discrete Mathematics CS 2610 March 17, 2009 Number Theory Elementary number theory, concerned with numbers, usually integers and their properties or rational numbers mainly divisibility among integers

More information

Fundamentals of Modern Cryptography

Fundamentals of Modern Cryptography Fundamentals of Modern Cryptography BRUCE MOMJIAN This presentation explains the fundamentals of modern cryptographic methods. Creative Commons Attribution License http://momjian.us/presentations Last

More information

One can use elliptic curves to factor integers, although probably not RSA moduli.

One can use elliptic curves to factor integers, although probably not RSA moduli. Elliptic Curves Elliptic curves are groups created by defining a binary operation (addition) on the points of the graph of certain polynomial equations in two variables. These groups have several properties

More information

THE RSA CRYPTOSYSTEM

THE RSA CRYPTOSYSTEM THE RSA CRYPTOSYSTEM SILVIA ROBLES Abstract. This paper explores the history and mathematics behind the RSA cryptosystem, including the idea of public key cryptosystems and number theory. It outlines the

More information

CPSC 467: Cryptography and Computer Security

CPSC 467: Cryptography and Computer Security CPSC 467: Cryptography and Computer Security Michael J. Fischer Lecture 11 October 7, 2015 CPSC 467, Lecture 11 1/37 Digital Signature Algorithms Signatures from commutative cryptosystems Signatures from

More information

Introduction to Cryptography. Lecture 8

Introduction to Cryptography. Lecture 8 Introduction to Cryptography Lecture 8 Benny Pinkas page 1 1 Groups we will use Multiplication modulo a prime number p (G, ) = ({1,2,,p-1}, ) E.g., Z 7* = ( {1,2,3,4,5,6}, ) Z p * Z N * Multiplication

More information

A CRYPTANALYTIC ATTACK-ON THE LU-LEE PUBLIC-KEY CRYPTOSYSTEM

A CRYPTANALYTIC ATTACK-ON THE LU-LEE PUBLIC-KEY CRYPTOSYSTEM Philips J. Res. 35, 301-306, 1980 R J022 A CRYPTANALYTIC ATTACK-ON THE LU-LEE PUBLIC-KEY CRYPTOSYSTEM by J.-M. GOETHALS and C. COUVREUR Abstract We present a method for finding the secret decryption key

More information