Cryptography: Basics (2)

Slides:



Advertisements
Similar presentations
Public Key Encryptions CS461/ECE422 Fall Reading Material Text Chapters 2 and 20 Handbook of Applied Cryptography, Chapter 8 –
Advertisements

Session 4 Asymmetric ciphers.
Session 5 Hash functions and digital signatures. Contents Hash functions – Definition – Requirements – Construction – Security – Applications 2/44.
Public Key Algorithms …….. RAIT M. Chatterjee.
ECOMMERCE TECHNOLOGY SUMMER 2002 COPYRIGHT © 2002 MICHAEL I. SHAMOS Cryptographic Security.
ECOMMERCE TECHNOLOGY FALL 2003 COPYRIGHT © 2003 MICHAEL I. SHAMOS Cryptography.
ITIS 3200: Introduction to Information Security and Privacy Dr. Weichao Wang.
Csci5233 Computer Security & Integrity 1 Cryptography: Basics (2)
RSA Exponentiation cipher
How cryptography is used to secure web services Josh Benaloh Cryptographer Microsoft Research.
Public Key Cryptography RSA Diffie Hellman Key Management Based on slides by Dr. Lawrie Brown of the Australian Defence Force Academy, University College,
Public Key Cryptography and Cryptographic Hashes CS461/ECE422 Fall 2009.
CSCI 172/283 Fall 2010 Public Key Cryptography. New paradigm introduced by Diffie and Hellman The mailbox analogy: Bob has a locked mailbox Alice can.
Public Key Model 8. Cryptography part 2.
Tonga Institute of Higher Education Design and Analysis of Algorithms IT 254 Lecture 9: Cryptography.
Lecture 15 Lecture’s outline Public algorithms (usually) that are each other’s inverse.
CIS 725 Security. Cryptosystem Quintuple ( E, D, M, K, C ) M set of plaintexts K set of keys C set of ciphertexts E set of encryption functions e: M 
1 Lecture 9 Public Key Cryptography Public Key Algorithms CIS CIS 5357 Network Security.
Digital Signatures. Public Key Cryptography Public Key Cryptography Requirements 1.It must be computationally easy to encipher or decipher a message.
Courtesy of Professors Chris Clifton & Matt Bishop INFSCI 2935: Introduction of Computer Security1 October 2, 2003 Introduction to Computer Security Lecture.
Public Key Cryptography. symmetric key crypto requires sender, receiver know shared secret key Q: how to agree on key in first place (particularly if.
1 Public-Key Cryptography and Message Authentication.
CSCI 172/283 Fall 2010 Hash Functions, HMACs, and Digital Signatures.
September 10, 2009Introduction to Computer Security ©2004 Matt Bishop Slide #8-1 Chapter 8: Basic Cryptography Classical Cryptography Public Key Cryptography.
CIT 380: Securing Computer SystemsSlide #1 CIT 380: Securing Computer Systems Modern Cryptography.
Cryptography 1 Crypto Cryptography 2 Crypto  Cryptology  The art and science of making and breaking “secret codes”  Cryptography  making “secret.
15-499Page :Algorithms and Applications Cryptography I – Introduction – Terminology – Some primitives – Some protocols.
CSC 382: Computer SecuritySlide #1 CSC 382: Computer Security Modern Cryptography.
Public Key Algorithms Lesson Introduction ●Modular arithmetic ●RSA ●Diffie-Hellman.
PUBLIC-KEY CRYPTOGRAPHY AND RSA – Chapter 9 PUBLIC-KEY CRYPTOGRAPHY AND RSA – Chapter 9 Principles Applications Requirements RSA Algorithm Description.
1 ISA 562 Information Security Theory & Practice Public Key Cryptosystem Chapter 9 of Bishop ’ s Book.
1.1 Introduction to Cryptography. 1.2 Basic Cryptography Cryptography is a deep mathematical subject. Cryptographic protocols provide a cornerstone for.
Week 4 - Wednesday.  What did we talk about last time?  Finished DES  AES.
Introduction to Pubic Key Encryption CSCI 5857: Encoding and Encryption.
IT 221: Introduction to Information Security Principles Lecture 5: Message Authentications, Hash Functions and Hash/Mac Algorithms For Educational Purposes.
RSA Pubic Key Encryption CSCI 5857: Encoding and Encryption.
Elgamal Public Key Encryption CSCI 5857: Encoding and Encryption.
Cryptographic Security Aveek Chakraborty CS5204 – Operating Systems1.
Public Key Cryptography and Cryptographic Hashes CS461/ECE422 1.
Lecture 5 Asymmetric Cryptography. Private-Key Cryptography Traditional private/secret/single key cryptography uses one key Shared by both sender and.
RSA cryptosystem with large key length
Public Key Cryptography
최신정보보호기술 경일대학교 사이버보안학과 김 현성.
Basics of Cryptography
Security Outline Encryption Algorithms Authentication Protocols
Asymmetric-Key Cryptography
Key Exchange References: Applied Cryptography, Bruce Schneier
Public-Key Cryptography and Message Authentication
CS 2210:0001Discrete Structures Modular Arithmetic and Cryptography
Network Security Unit-III
IS 2150 / TEL 2810 Information Security and Privacy
Public Key Encryption and Digital Signatures
Public-key Cryptography
Taehyung Kim HPC Lab. POSTECH
Chapter 30 Cryptography Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Asymmetric Cryptography
Public Key Cryptography Diffie-Hellman, Discrete Log, RSA
CIT 380: Securing Computer Systems
برگرفته از اسلایدهای © University of Glamorgan
Bishop: Chapter 10 Key Management: Digital Signature
Lecture 4.1: Hash Functions, and Message Authentication Codes
Digital Communications
Chapter 3 - Public-Key Cryptography & Authentication
Chapter 29 Cryptography and Network Security
PUBLIC-KEY CRYPTOGRAPHY AND RSA – Chapter 9
Security: Integrity, Authentication, Non-repudiation
Security: Public Key Cryptography
Presentation transcript:

Cryptography: Basics (2) csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Outline Classical Cryptography Caesar cipher Vigenère cipher DES Public Key Cryptography Diffie-Hellman RSA Cryptographic Checksums HMAC csci5233 Computer Security & Integrity

Public Key Cryptography Two keys Private key known only to individual Public key available to anyone Public key, private key inverses Idea Confidentiality: encipher using public key, decipher using private key Integrity/authentication: encipher using private key, decipher using public one csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Requirements It must be computationally easy to encipher or decipher a message given the appropriate key It must be computationally infeasible to derive the private key from the public key It must be computationally infeasible to determine the private key from a chosen plaintext attack csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Diffie-Hellman First public key cryptosystem proposed Compute a common, shared key Called a symmetric key exchange protocol Based on discrete logarithm problem Given integers n and g and prime number p, compute k such that n = gk mod p Solutions known for small p Solutions computationally infeasible as p grows large csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Algorithm Constants Known to all participants: a prime p, an integer g ≠ 0, 1, p–1 Anne chooses private key kAnne, computes public key KAnne = gkAnne mod p // kAnne: Anne’s private key; KAnne: Anne’s public key To communicate with Bob, Anne computes Kshared = KBobkAnne mod p To communicate with Anne, Bob computes Kshared = KAnnekBob mod p It can be shown these keys are equal csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Example Assume p = 53 and g = 17 Alice chooses kAlice = 5 Then KAlice = 175 mod 53 = 40 Bob chooses kBob = 7 Then KBob = 177 mod 53 = 6 Shared key: KBobkAlice mod p = 65 mod 53 = 38 KAlicekBob mod p = 407 mod 53 = 38 Question: What keys are exchanged between Alice and Bob? csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity RSA Exponentiation cipher Relies on the difficulty of determining ‘the number of numbers relatively prime to a large integer n’ (i.e., totient(n) ) An integer i is relatively prime to n when i and n have no common factors. csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Background Totient function (n) Number of positive integers less than n and relatively prime to n Relatively prime means with no factors in common with n Example: (10) = 4 1, 3, 7, 9 are relatively prime to 10 Example: (21) = 12 1, 2, 4, 5, 8, 10, 11, 13, 16, 17, 19, 20 are relatively prime to 21 csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Algorithm Choose two large prime numbers p, q Let n = pq; then (n) = (p–1)(q–1) Choose e < n such that e is relatively prime to (n). Compute d such that ed mod (n) = 1 Public key: (e, n); private key: d Encipher: c = me mod n Decipher: m = cd mod n csci5233 Computer Security & Integrity

Example: Confidentiality Take p = 7, q = 11, so n = 77 and (n) = 60 Alice chooses e = 17, making d = 53 Bob wants to send Alice secret message HELLO (07 04 11 11 14) 0717 mod 77 = 28 0417 mod 77 = 16 1117 mod 77 = 44 1417 mod 77 = 42 Bob sends 28 16 44 44 42 csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Example Alice receives 28 16 44 44 42 Alice uses private key, d = 53, to decrypt message: 2853 mod 77 = 07 1653 mod 77 = 04 4453 mod 77 = 11 4253 mod 77 = 14 Alice translates message to letters to read HELLO No one else could read it, as only Alice knows her private key and that is needed for decryption csci5233 Computer Security & Integrity

Example: Integrity/Authentication Take p = 7, q = 11, so n = 77 and (n) = 60 Alice chooses e = 17, making d = 53 Alice wants to send Bob message HELLO (07 04 11 11 14) so Bob knows it is what Alice sent (no changes in transit, and authenticated) 0753 mod 77 = 35 0453 mod 77 = 09 1153 mod 77 = 44 1453 mod 77 = 49 Alice sends 35 09 44 44 49 csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Example Bob receives 35 09 44 44 49 Bob uses Alice’s public key, e = 17, n = 77, to decrypt message: 3517 mod 77 = 07 0917 mod 77 = 04 4417 mod 77 = 11 4917 mod 77 = 14 Bob translates message to letters to read HELLO Alice sent it as only she knows her private key, so no one else could have enciphered it If (enciphered) message’s blocks (letters) altered in transit, would not decrypt properly csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Example: Both Alice wants to send Bob message HELLO both enciphered and authenticated (integrity-checked) Alice’s keys: public (17, 77); private: 53 Bob’s keys: public: (37, 77); private: 13 Alice enciphers HELLO (07 04 11 11 14): (0753 mod 77)37 mod 77 = 07 (0453 mod 77)37 mod 77 = 37 (1153 mod 77)37 mod 77 = 44 (1453 mod 77)37 mod 77 = 14 Alice sends 07 37 44 44 14 csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Security Services Confidentiality Only the owner of the private key knows it, so text enciphered with public key cannot be read by anyone except the owner of the private key Authentication Only the owner of the private key knows it, so text enciphered with private key must have been generated by the owner csci5233 Computer Security & Integrity

More Security Services Integrity Enciphered letters cannot be changed undetectably without knowing private key Non-Repudiation Message enciphered with private key came from someone who knew it csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Warnings Encipher message in blocks considerably larger than the examples here If 1 character per block, RSA can be broken using statistical attacks (just like classical cryptosystems) Attacker cannot alter letters, but can rearrange them and alter message meaning Example: reverse enciphered message of text ON to get NO csci5233 Computer Security & Integrity

Cryptographic Checksums Mathematical function to generate a set of k bits from a set of n bits (where k ≤ n). k is smaller then n except in unusual circumstances Example: ASCII parity bit ASCII has 7 bits; 8th bit is “parity” Even parity: even number of 1 bits Odd parity: odd number of 1 bits csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Example Use Bob receives “10111101” as bits. Sender is using even parity; 6 1 bits, so character was received correctly Note: could be garbled, but 2 bits would need to have been changed to preserve parity Sender is using odd parity; even number of 1 bits, so character was not received correctly csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Definition Cryptographic checksum function h: AB: For any x IN A, h(x) is easy to compute For any y IN B, it is computationally infeasible to find x IN A such that h(x) = y It is computationally infeasible to find x, x´ IN A such that x ≠ x´ and h(x) = h(x´) Alternate form (Stronger): Given any x IN A, it is computationally infeasible to find a different x´ IN A such that h(x) = h(x´). csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Collisions If x ≠ x´ and h(x) = h(x´), x and x´ are a collision Pigeonhole principle: if there are n containers for n+1 objects, then at least one container will have 2 objects in it. Application: suppose n = 5 and k = 3. Then there are 32 elements of A and 8 elements of B, so at least one element of B has at least 4 corresponding elements of A csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Keys Keyed cryptographic checksum: requires cryptographic key DES in chaining mode: encipher message, use last n bits. Requires a key to encipher, so it is a keyed cryptographic checksum. Keyless cryptographic checksum: requires no cryptographic key MD5 and SHA-1 are best known; others include MD4, HAVAL, and Snefru csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity HMAC Make keyed cryptographic checksums from keyless cryptographic checksums h keyless cryptographic checksum function that takes data in blocks of b bytes and outputs blocks of l bytes. k´ is cryptographic key of length b bytes If short, pad with 0 bytes; if long, hash to length b ipad is 00110110 repeated b times opad is 01011100 repeated b times HMAC-h(k, m) = h(k´  opad || h(k´  ipad || m))  exclusive or, || concatenation Correction: H(K XOR opad, H(K XOR ipad, text)) csci5233 Computer Security & Integrity

csci5233 Computer Security & Integrity Key Points Two main types of cryptosystems: classical and public key Classical cryptosystems encipher and decipher using the same key Or one key is easily derived from the other Public key cryptosystems encipher and decipher using different keys Computationally infeasible to derive one from the other Cryptographic checksums provide a check on integrity csci5233 Computer Security & Integrity