message authentication codes
play

Message Authentication Codes Auth. with MAC Security Algorithms - PowerPoint PPT Presentation

CSS441 Introduction Functions Auth. with Encryption Message Authentication Codes Auth. with MAC Security Algorithms CSS441: Security and Cryptography Sirindhorn International Institute of Technology Thammasat University Prepared by


  1. CSS441 Introduction Functions Auth. with Encryption Message Authentication Codes Auth. with MAC Security Algorithms CSS441: Security and Cryptography Sirindhorn International Institute of Technology Thammasat University Prepared by Steven Gordon on 20 December 2015 css441y15s2l08, Steve/Courses/2015/s2/css441/lectures/message-authentication-codes.tex, r4295 1/21

  2. CSS441 Contents Introduction Functions Message Authentication Requirements and Functions Auth. with Encryption Auth. with MAC Security Authentication using Symmetric Key Encryption Algorithms Authentication with Message Authentication Codes Security of MACs MAC Algorithms 2/21

  3. CSS441 Attacks on Communications across Network Introduction 1. Disclosure: encryption Functions 2. Traffic analysis: encryption Auth. with Encryption 3. Masquerade: message authentication Auth. with MAC 4. Content modification: message authentication Security Algorithms 5. Sequence modification: message authentication 6. Timing modification: message authentication 7. Source repudiation: digital signatures 8. Destination repudiation: digital signatures 3/21

  4. CSS441 Authentication Introduction ◮ Receiver wants to verify: Functions 1. Contents of the message have not been modified ( data Auth. with authentication ) Encryption 2. Source of message is who they claim to be ( source Auth. with MAC authentication ) Security ◮ Different approaches available: Algorithms ◮ Symmetric Key Encryption ◮ Message Authentication Codes (MACs) ◮ Hash Functions ◮ Public Key Encryption (i.e. Digital Signatures) 4/21

  5. CSS441 Contents Introduction Functions Message Authentication Requirements and Functions Auth. with Encryption Auth. with MAC Security Authentication using Symmetric Key Encryption Algorithms Authentication with Message Authentication Codes Security of MACs MAC Algorithms 5/21

  6. CSS441 Symmetric Encryption for Authentication Introduction Functions Auth. with Encryption Auth. with MAC Security Credit: Figure 12.1(a) in Stallings, Cryptography and Network Security , 5th Ed., Pearson 2011 Algorithms ◮ Confidentiality: only B (and A) can recover plaintext ◮ Source Authentication: A is only other user with key; must have come from A ◮ Data Authentication: successfully decrypted; data has not been modified ◮ Assumption: decryptor can recognise correct plaintext 6/21

  7. CSS441 Recognising Correct Plaintext Introduction Example 1 Functions Auth. with B receives ciphertext (supposedly from A , using shared Encryption secret key K ): Auth. with MAC Security DPNFCTEJLYONCJAEZRCLASJTDQFY Algorithms B decrypts with key K to obtain plaintext: SECURITYANDCRYPTOGRAPHYISFUN ◮ Was the plaintext encrypted with key K (and hence sent by A )? ◮ Is the ciphertext received the same as the ciphertext sent by A ? 7/21

  8. CSS441 Recognising Correct Plaintext Introduction Example 2 Functions Auth. with B receives ciphertext (supposedly from A , using shared Encryption secret key K ): Auth. with MAC Security QEFPFPQEBTOLKDJBPPXDBPLOOVX Algorithms B decrypts with key K to obtain plaintext: FTUEUEFTQIDAZSYQEEMSQEADDKM ◮ Was the plaintext encrypted with key K (and hence sent by A )? ◮ Is the ciphertext received the same as the ciphertext sent by A ? 8/21

  9. CSS441 Recognising Correct Plaintext Introduction Example 3 Functions Auth. with B receives ciphertext (supposedly from A , using shared Encryption secret key K ): Auth. with MAC Security 0110100110101101010110111000010 Algorithms B decrypts with key K to obtain plaintext: 0101110100001101001010100101110 ◮ Was the plaintext encrypted with key K (and hence sent by A )? ◮ Is the ciphertext received the same as the ciphertext sent by A ? 9/21

  10. CSS441 Recognising Correct Plaintext Introduction Example 1 Functions Auth. with ◮ Assume the message is English Encryption Auth. with MAC ◮ Plaintext had expected structure; assume the plaintext Security is correct Algorithms ◮ Sent by A and has not been modified Example 2 ◮ Assume the message is English ◮ Plaintext had no structure in expected language; assume plaintext is incorrect ◮ Either not sent by A or modified Example 3 ◮ Binary data, e.g. image, compressed file ◮ Cannot know whether correct or incorrect 10/21

  11. CSS441 Recognising Correct Plaintext Introduction ◮ Valid plaintexts should be small subset of all possible Functions messages Auth. with ◮ E.g. 26 n possible messages of length n ; only small Encryption subset are valid English phrases Auth. with MAC ◮ Plaintext messages have structure Security Algorithms ◮ BUT automatically detecting structure can be difficult ◮ Add structure to make it easier, e.g. ◮ Error detecting code or Frame Check Sequence ◮ Packet header 11/21

  12. CSS441 Contents Introduction Functions Message Authentication Requirements and Functions Auth. with Encryption Auth. with MAC Security Authentication using Symmetric Key Encryption Algorithms Authentication with Message Authentication Codes Security of MACs MAC Algorithms 12/21

  13. CSS441 Authentication with Message Authentication Introduction Codes Functions ◮ Append small, fixed-size block of data to message: Auth. with Encryption cryptographic checksum or MAC Auth. with MAC Security T = MAC ( K , M ) Algorithms M = input message MAC = MAC function K = shared secret key of k bits T = message authentication code (or tag) of n bits ◮ MAC function also called keyed hash function ◮ MAC function similar to encryption, but does not need to be reversible ◮ Easier to design stronger MAC functions than encryption functions 13/21

  14. CSS441 Example Uses of MAC Introduction Functions Auth. with Encryption Auth. with MAC Security Algorithms Credit: Figure 12.4 in Stallings, Cryptography and Network Security , 5th Ed., Pearson 2011 14/21

  15. CSS441 Contents Introduction Functions Message Authentication Requirements and Functions Auth. with Encryption Auth. with MAC Security Authentication using Symmetric Key Encryption Algorithms Authentication with Message Authentication Codes Security of MACs MAC Algorithms 15/21

  16. CSS441 Requirement of MACs Introduction Objective of Attacker Functions Auth. with ◮ Assume MAC function is known, key K is not Encryption Auth. with MAC ◮ For valid MAC code for given message x Security Algorithms Requirement of MAC Function Computation Resistance : given one or more text-MAC pairs [ x i , MAC ( K , x i )], computationally infeasible to compute any text-MAC pair [ x , MAC ( K , x )] for new input x � = x i 16/21

  17. CSS441 Security of MACs Introduction Brute Force Attack on Key Functions Auth. with ◮ Attacker knows [ x 1 , T 1 ] where T 1 = MAC ( K , x 1 ) Encryption Auth. with MAC ◮ Key size of k bits: brute force on key, 2 k Security ◮ But . . . many tags match T 1 Algorithms ◮ For keys that produce tag T 1 , try again with [ x 2 , T 2 ] ◮ Effort to find K is approximately 2 k Brute Force Attack on MAC value ◮ For x m , find T m without knowing K ◮ Similar effort required as one-way/weak collision resistant property for hash functions ◮ For n bit MAC value length, effort is 2 n Effort to break MAC: min (2 k , 2 n ) 17/21

  18. CSS441 Security of MACs Introduction Cryptanalysis Functions Auth. with ◮ Many different MAC algorithms; attacks specific to Encryption Auth. with MAC algorithms Security ◮ MAC algorithms generally considered secure Algorithms 18/21

  19. CSS441 Contents Introduction Functions Message Authentication Requirements and Functions Auth. with Encryption Auth. with MAC Security Authentication using Symmetric Key Encryption Algorithms Authentication with Message Authentication Codes Security of MACs MAC Algorithms 19/21

  20. CSS441 MACs Based on Block Ciphers Introduction ◮ Data Authentication Algorithm (DAA): based on DES; Functions considered insecure Auth. with Encryption ◮ Cipher-Based Message Authentication Code (CMAC): Auth. with MAC mode of operation used with Triple-DES and AES Security ◮ OMAC, PMAC, UMAC, VMAC, . . . Algorithms 20/21

  21. CSS441 HMAC Introduction ◮ MAC function derived from cryptographic hash Functions functions Auth. with ◮ MD5/SHA are fast in software (compared to block Encryption ciphers) Auth. with MAC ◮ Libraries for hash functions widely available Security HMAC ( K , M ) = H (( K ⊕ opad ) || H (( K ⊕ ipad ) || M )) Algorithms where ipad= 00110110 repeated, opad= 01011100 repeated ◮ Security of HMAC depends on security of hash function used 21/21

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend