SlideShare uma empresa Scribd logo
1 de 48
Baixar para ler offline
Authenticated
 encryption
  GCM and CCM modes



Lorenzo Peraldo and Vittorio Picco
Authenticated encryption

                  Definition

“ Authenticated Encryption (AE) is a term used
  to describe encryption systems which
  simultaneously protect confidentiality,
                          confidentiality,
  authenticity and integrity of communications ”
Basic components

Message Authentication
    Code (MAC)

         +
Symmetric encryption
Why?
MAC
  Integrity:
  Integrity: an attacker can’t modify the data and then
  compute a new MAC, because a secret key is needed
  Authentication:
  Authentication: only the user who has got the
  secret key can authenticate the message
Symmetric encryption
  Confidentiality:
  Confidentiality: data are encrypted
  Authentication:
  Authentication: if only 2 users share the secret key
A non-computer example
        non-
A letter from a lover by ordinary mail:
  Envelope: confidentiality and integrity
  Signature: authentication
Sender AE black box
Input
  A plaintext message
  A key
  Possibly a nonce
Output
  The encrypted message (ciphertext)
  An authentication tag
Recipient AE black box
Input
  An encrypted message
  A tag
  The nonce, if used
  The key
Output
  If the tag is verified: the plaintext
  else: FAIL
AE security
Privacy
  An attacker can sniff the ciphertext and the nonce,
  but must not be able to recover the plaintext
  The ciphertext should look like random bits
Authentication
  An attacker shouldn’t be able to construct a
  ciphertext, a tag and a nonce such that the recipient
  accept them as valid.
  Protection from replay attacks
AE implementations
Usually with “modes”
A mode is a sequence of operations applied to a
block cipher, like DES or AES
Examples: CBC, ECB, CTR, …
CCM and GCM provide authenticated
encryption
Generic composition
Immediate solution
  PRO: easy, secure, no need to develop specific apps
  CON: not optimized, 2 keys needed for best security
3 ways
  MtE: MAC then Encrypt
  EtM: Encrypt then MAC
  E&M: Encrypt and MAC
EtM is the best
Single-
  Single-pass combined mode
2000: IBM developed IAPM
Comparison with generic composition
  Split the plaintext in m parts
  Generic composition: 2m calls of the block cipher
  Single-
  Single-pass: about m invocations
Many followed: XCBC, XECB, OCB, …
There is only a problem…
Oh no, Intellectual Properties !!
Single-
Single-pass modes were all patented
      IAPM                 OCB
              XCBC                      XECB




                        By Rogaway,
                       Bellare, Black,By Gligor and
         By By Gligor and
            IBM
                Donescu  and Krovetz      Donescu
As a result …
Probably some of the patents are interrelated
Nobody has gone to court to prove it (yet…)
The possible users of these technologies has
been scared by the legal implications
The researchers have moved toward other
directions
All single-pass combined mode are used by
    single-
anybody, even though they are the best solution
Two-
   Two-pass combined mode
Not that different from generic composition
Some advantages
  Use of only one key
  Patent free
  Better performances than generic composition
CCM, EAX, CWC, GCM
CCM
A brief introduction
What is CCM
Counter with CBC-MAC
             CBC-
An authenticated encryption solution
Encryption
  Use of the block cipher AES-128
                          AES-
  Counter (CTR) mode
Authentication
  MAC computed with CBC (Cipher Block Chaining)
Main features
Symmetric key
Designed for AES-128
              AES-
Use in packet environment (no stream data)
Arbitrary length MAC
Only one key for authentication and encryption
No intellectual property restrictions
How does it work ?

Generation - encryption
How does it work ? (cont’d)

Decryption - verification
Generation-
           Generation-encryption
1.   The MAC (Message Authentication Code) is computed
     applying CBC to the formatted input data
             (N, P, A)       m1, m2, …, mx
Generation-
     Generation-encryption (cont’d)
2.    Counter mode is applied to encrypt data and MAC
Generation-
 Generation-encryption (cont’d)
3. Output ciphertext




    C=      MAC        Payload
                  K
Decryption-
   Decryption-verification
Counter mode decryption
Computation of MAC with CBC-MAC
                        CBC-
  (N, A, P’)
Verification of authenticity
Output: Payload / INVALID
Hardware implementation
CCM cannot be parallelized
Operations to be implemented:
  Encryption: hw implementation of AES cipher
  XOR
  Counter increment
  Formatting function
Security
Recommendations
  Keys must be secret and “fresh”
  IV: 0 for CBC-MAC
            CBC-
  Never use the same nonce twice
  Max n° of nonce with the same key: 261
       n°
  Choose an appropriate MAC length
  Replay attacks: use of timestamps / number packets
A possible attack
“be conservative in what you send, and
      liberal in what you accept”

                       16-byte MAC
                       12-byte MAC
      16-byte MAC       8-byte MAC
                        4-byte MAC
A possible attack (cont’d)
  Here comes the bad guy !!



                   16-byte MAC
                   12-byte MAC
  4-byte MAC        8-byte MAC
                    4-byte MAC
A possible attack (cont’d)

 232 4-byte MAC computed




 At least one valid ciphertext
                                 !!!
Countermeasures
Fix the tag length parameter
  During key negotiation
Never change it during the current session
GCM
Galois/Counter Mode of operations
What is GCM - GMAC
An authenticated encryption solution
Encryption
  Use of the block cipher AES
  Mode of operation similar to the CTR
Authentication
  The MAC provided is a sort of keyed digest
  Can provide authentication only → GMAC
Main features
Extremely fast, more than 10Gbps
Easy to implement in software and hardware
Can be used for authentication only, if desired
Designed for AES, optimized for 128 bits
Arbitrary length IV, optimized for 96 bits
Only one key for authentication and encryption
No intellectual property restrictions
Authenticated encryption function




     WHAT ?!?!
Version for human beings
1. The hash sub-key H is computed and stored
            sub-
    0000000000000000
    0000000000000000
    0000000000000000
    0000000000000000    Enc K       H
    0000000000000000
    0000000000000000
    0000000000000000
    0000000000000000
Version for human beings
2. The IV length is checked

   If it’s 96 bits is padded to 128
   If it’s different is computed a 128 bit IV using
   a special function (GHASH)
   The IV is the starting value of the counter
Version for human beings
3. Encryption
Version for human beings
4. Authentication




            GF(2128)
Hardware implementation
The only way to manage more than 10Gbps
GCM can be parallelized
Operations to be implemented:
  Encryption: hw implementation of AES cipher
  XOR
  Increment of the counter
  Multiplication within GF(2128)
Hardware implementation
The multiplication in GF(2q)
Different approaches
  Parallel
  Serial: super serial, bit serial, etc
Serial solutions
  Time and area linear with q
Parallel solution
  Time: 1 clock cycle
  Area: quadratic with q, but only 30% of AES cipher

GO PARALLEL, BOYS!
Security
Recommendations
  Keys: secret and “fresh”
  IV: probability of using same IV and key < 2-32
  Known security problem with reused IVs
  Appropriate tag length
  Replay attacks: use of timestamps
Oracles...


Permutation oracle
  Outputs random number of PRF
  The PRF represent an encrypted message
Distinguishing advantage
Oracles...
Tag-
Tag-generation oracle
  Input: a message
  Output: a valid tag
Tag-
Tag-validation oracle
  Input: a message and a tag
  Output: is the tag correct for the given message?


Forgery advantage
CTR known issue
Hello world,       72dd0294rth%p
this is me,        29sj!5z/k=p
life should be     akd'^3sddG#/ap5
fun for everyone   97;7*h2?375ba+?9


Hello Sarah,
      Sarah,       72dd023&F7j%p
                   72dd023&F7j%p
this is me,        29sj!5z/k=p
life should be     akd'^3sddG#/ap5
fun for everyone   97;7*h2?375ba+?9
Beware !
Attacker with access to a tag-generation oracle
                          tag-
If IVs are not changed the output will be function
of the hash sub-key H
            sub-
Analyzing the resulting tags the attacker could
recover H
With H he can generate valid authentication tags,
thus pretending to be your friend !
Solution
This attack is possible only if you use at least
twice the same key with the same IV




NEVER DO THAT!
References
NIST Special Publication 800-38C (CCM)
                         800-
NIST Special Publication 800-38D (GCM)
                         800-
Authenticated Encryption (J. Black)
A Critique of CCM (P. Rogaway, D. Wagner)
On The Security of CTR + CBC-MAC (J. Jonsson)
                           CBC-
Counter with CBC-MAC (D. Whiting, R. Housley, N. Ferguson)
              CBC-
Flexible and Efficient Message Authentication in Hardware and
Software (D. A. McGrew, J. Viega)
The Security and Performance of the Galois/Counter Mode
(GCM) of Operation (D. A. McGrew, J. Viega)
www.wikipedia.org
Questions ?

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

RC4&RC5
RC4&RC5RC4&RC5
RC4&RC5
 
Secure socket layer
Secure socket layerSecure socket layer
Secure socket layer
 
Cryptography and Network Security William Stallings Lawrie Brown
Cryptography and Network Security William Stallings Lawrie BrownCryptography and Network Security William Stallings Lawrie Brown
Cryptography and Network Security William Stallings Lawrie Brown
 
Data Encryption Standard
Data Encryption StandardData Encryption Standard
Data Encryption Standard
 
Aes
AesAes
Aes
 
Block ciphers &amp; public key cryptography
Block ciphers &amp; public key cryptographyBlock ciphers &amp; public key cryptography
Block ciphers &amp; public key cryptography
 
Message Authentication Code & HMAC
Message Authentication Code & HMACMessage Authentication Code & HMAC
Message Authentication Code & HMAC
 
18CS2005 Cryptography and Network Security
18CS2005 Cryptography and Network Security18CS2005 Cryptography and Network Security
18CS2005 Cryptography and Network Security
 
RSA Algorithm
RSA AlgorithmRSA Algorithm
RSA Algorithm
 
CS6701 CRYPTOGRAPHY AND NETWORK SECURITY
CS6701 CRYPTOGRAPHY AND NETWORK SECURITYCS6701 CRYPTOGRAPHY AND NETWORK SECURITY
CS6701 CRYPTOGRAPHY AND NETWORK SECURITY
 
Trible data encryption standard (3DES)
Trible data encryption standard (3DES)Trible data encryption standard (3DES)
Trible data encryption standard (3DES)
 
DES
DESDES
DES
 
Ipsec
IpsecIpsec
Ipsec
 
Internet Key Exchange Protocol
Internet Key Exchange ProtocolInternet Key Exchange Protocol
Internet Key Exchange Protocol
 
IP Sec - Basic Concepts
IP Sec - Basic ConceptsIP Sec - Basic Concepts
IP Sec - Basic Concepts
 
2. public key cryptography and RSA
2. public key cryptography and RSA2. public key cryptography and RSA
2. public key cryptography and RSA
 
Block Ciphers Modes of Operation
Block Ciphers Modes of OperationBlock Ciphers Modes of Operation
Block Ciphers Modes of Operation
 
Introduction to Cryptography
Introduction to CryptographyIntroduction to Cryptography
Introduction to Cryptography
 
A Tutorial on Linear and Differential Cryptanalysis by Howard M. Heys
A Tutorial on Linear and Differential Cryptanalysis by Howard M. HeysA Tutorial on Linear and Differential Cryptanalysis by Howard M. Heys
A Tutorial on Linear and Differential Cryptanalysis by Howard M. Heys
 
Rsa
RsaRsa
Rsa
 

Destaque (7)

Block Ciphers Modes of Operation
Block Ciphers Modes of OperationBlock Ciphers Modes of Operation
Block Ciphers Modes of Operation
 
IEEE 802.22[wardah & mariam]
IEEE 802.22[wardah & mariam]IEEE 802.22[wardah & mariam]
IEEE 802.22[wardah & mariam]
 
Block Cipher Modes of Operation And Cmac For Authentication
Block Cipher Modes of Operation And Cmac For AuthenticationBlock Cipher Modes of Operation And Cmac For Authentication
Block Cipher Modes of Operation And Cmac For Authentication
 
Block cipher modes of operation
Block cipher modes of operation Block cipher modes of operation
Block cipher modes of operation
 
Shanghai Breakout: Wireless LAN Security Fundamentals
Shanghai Breakout: Wireless LAN Security Fundamentals Shanghai Breakout: Wireless LAN Security Fundamentals
Shanghai Breakout: Wireless LAN Security Fundamentals
 
PUBLIC KEY ENCRYPTION
PUBLIC KEY ENCRYPTIONPUBLIC KEY ENCRYPTION
PUBLIC KEY ENCRYPTION
 
Printers And Its Types
Printers And Its TypesPrinters And Its Types
Printers And Its Types
 

Semelhante a Authenticated Encryption Gcm Ccm

Cryptography101
Cryptography101Cryptography101
Cryptography101
NCC Group
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
James Wong
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
Young Alista
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
David Hoen
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
Tony Nguyen
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
Luis Goldster
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
Fraboni Ec
 
Cryptography and Message Authentication NS3
Cryptography and Message Authentication NS3Cryptography and Message Authentication NS3
Cryptography and Message Authentication NS3
koolkampus
 
CH02-CompSec4e.pptx
CH02-CompSec4e.pptxCH02-CompSec4e.pptx
CH02-CompSec4e.pptx
ams1ams11
 

Semelhante a Authenticated Encryption Gcm Ccm (20)

Cryptography101
Cryptography101Cryptography101
Cryptography101
 
[BlackHat USA 2016] Nonce-Disrespecting Adversaries: Practical Forgery Attack...
[BlackHat USA 2016] Nonce-Disrespecting Adversaries: Practical Forgery Attack...[BlackHat USA 2016] Nonce-Disrespecting Adversaries: Practical Forgery Attack...
[BlackHat USA 2016] Nonce-Disrespecting Adversaries: Practical Forgery Attack...
 
Cs8792 cns - unit iv
Cs8792   cns - unit ivCs8792   cns - unit iv
Cs8792 cns - unit iv
 
Cs8792 cns - unit iv
Cs8792   cns - unit ivCs8792   cns - unit iv
Cs8792 cns - unit iv
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
 
Introduction to security_and_crypto
Introduction to security_and_cryptoIntroduction to security_and_crypto
Introduction to security_and_crypto
 
Cryptography and Message Authentication NS3
Cryptography and Message Authentication NS3Cryptography and Message Authentication NS3
Cryptography and Message Authentication NS3
 
Cryptography for Absolute Beginners (May 2019)
Cryptography for Absolute Beginners (May 2019)Cryptography for Absolute Beginners (May 2019)
Cryptography for Absolute Beginners (May 2019)
 
Moein
MoeinMoein
Moein
 
CH02-CompSec4e.pptx
CH02-CompSec4e.pptxCH02-CompSec4e.pptx
CH02-CompSec4e.pptx
 
Linux Kernel Cryptographic API and Use Cases
Linux Kernel Cryptographic API and Use CasesLinux Kernel Cryptographic API and Use Cases
Linux Kernel Cryptographic API and Use Cases
 
Java Crypto
Java CryptoJava Crypto
Java Crypto
 
Information and data security cryptography and network security
Information and data security cryptography and network securityInformation and data security cryptography and network security
Information and data security cryptography and network security
 
Ip Sec
Ip SecIp Sec
Ip Sec
 
Message Authentication Requirement-MAC
Message Authentication Requirement-MACMessage Authentication Requirement-MAC
Message Authentication Requirement-MAC
 

Mais de Vittorio Giovara

Mais de Vittorio Giovara (12)

Color me intrigued: A jaunt through color technology in video
Color me intrigued: A jaunt through color technology in videoColor me intrigued: A jaunt through color technology in video
Color me intrigued: A jaunt through color technology in video
 
An overview on 10 bit video: UHDTV, HDR, and coding efficiency
An overview on 10 bit video: UHDTV, HDR, and coding efficiencyAn overview on 10 bit video: UHDTV, HDR, and coding efficiency
An overview on 10 bit video: UHDTV, HDR, and coding efficiency
 
Introduction to video reverse engineering
Introduction to video reverse engineeringIntroduction to video reverse engineering
Introduction to video reverse engineering
 
Il Caso Ryanair
Il Caso RyanairIl Caso Ryanair
Il Caso Ryanair
 
I Mercati Geografici
I Mercati GeograficiI Mercati Geografici
I Mercati Geografici
 
Crittografia Quantistica
Crittografia QuantisticaCrittografia Quantistica
Crittografia Quantistica
 
Fuzzing Techniques for Software Vulnerability Discovery
Fuzzing Techniques for Software Vulnerability DiscoveryFuzzing Techniques for Software Vulnerability Discovery
Fuzzing Techniques for Software Vulnerability Discovery
 
Parallel and Distributed Computing on Low Latency Clusters
Parallel and Distributed Computing on Low Latency ClustersParallel and Distributed Computing on Low Latency Clusters
Parallel and Distributed Computing on Low Latency Clusters
 
Software Requirements for Safety-related Systems
Software Requirements for Safety-related SystemsSoftware Requirements for Safety-related Systems
Software Requirements for Safety-related Systems
 
Microprocessor-based Systems 48/32bit Division Algorithm
Microprocessor-based Systems 48/32bit Division AlgorithmMicroprocessor-based Systems 48/32bit Division Algorithm
Microprocessor-based Systems 48/32bit Division Algorithm
 
Misra C Software Development Standard
Misra C Software Development StandardMisra C Software Development Standard
Misra C Software Development Standard
 
OpenSSL User Manual and Data Format
OpenSSL User Manual and Data FormatOpenSSL User Manual and Data Format
OpenSSL User Manual and Data Format
 

Último

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 

Último (20)

[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 

Authenticated Encryption Gcm Ccm

  • 1. Authenticated encryption GCM and CCM modes Lorenzo Peraldo and Vittorio Picco
  • 2. Authenticated encryption Definition “ Authenticated Encryption (AE) is a term used to describe encryption systems which simultaneously protect confidentiality, confidentiality, authenticity and integrity of communications ”
  • 3. Basic components Message Authentication Code (MAC) + Symmetric encryption
  • 4. Why? MAC Integrity: Integrity: an attacker can’t modify the data and then compute a new MAC, because a secret key is needed Authentication: Authentication: only the user who has got the secret key can authenticate the message Symmetric encryption Confidentiality: Confidentiality: data are encrypted Authentication: Authentication: if only 2 users share the secret key
  • 5. A non-computer example non- A letter from a lover by ordinary mail: Envelope: confidentiality and integrity Signature: authentication
  • 6. Sender AE black box Input A plaintext message A key Possibly a nonce Output The encrypted message (ciphertext) An authentication tag
  • 7. Recipient AE black box Input An encrypted message A tag The nonce, if used The key Output If the tag is verified: the plaintext else: FAIL
  • 8. AE security Privacy An attacker can sniff the ciphertext and the nonce, but must not be able to recover the plaintext The ciphertext should look like random bits Authentication An attacker shouldn’t be able to construct a ciphertext, a tag and a nonce such that the recipient accept them as valid. Protection from replay attacks
  • 9. AE implementations Usually with “modes” A mode is a sequence of operations applied to a block cipher, like DES or AES Examples: CBC, ECB, CTR, … CCM and GCM provide authenticated encryption
  • 10. Generic composition Immediate solution PRO: easy, secure, no need to develop specific apps CON: not optimized, 2 keys needed for best security 3 ways MtE: MAC then Encrypt EtM: Encrypt then MAC E&M: Encrypt and MAC EtM is the best
  • 11. Single- Single-pass combined mode 2000: IBM developed IAPM Comparison with generic composition Split the plaintext in m parts Generic composition: 2m calls of the block cipher Single- Single-pass: about m invocations Many followed: XCBC, XECB, OCB, … There is only a problem…
  • 12. Oh no, Intellectual Properties !! Single- Single-pass modes were all patented IAPM OCB XCBC XECB By Rogaway, Bellare, Black,By Gligor and By By Gligor and IBM Donescu and Krovetz Donescu
  • 13. As a result … Probably some of the patents are interrelated Nobody has gone to court to prove it (yet…) The possible users of these technologies has been scared by the legal implications The researchers have moved toward other directions All single-pass combined mode are used by single- anybody, even though they are the best solution
  • 14. Two- Two-pass combined mode Not that different from generic composition Some advantages Use of only one key Patent free Better performances than generic composition CCM, EAX, CWC, GCM
  • 16. What is CCM Counter with CBC-MAC CBC- An authenticated encryption solution Encryption Use of the block cipher AES-128 AES- Counter (CTR) mode Authentication MAC computed with CBC (Cipher Block Chaining)
  • 17. Main features Symmetric key Designed for AES-128 AES- Use in packet environment (no stream data) Arbitrary length MAC Only one key for authentication and encryption No intellectual property restrictions
  • 18. How does it work ? Generation - encryption
  • 19. How does it work ? (cont’d) Decryption - verification
  • 20. Generation- Generation-encryption 1. The MAC (Message Authentication Code) is computed applying CBC to the formatted input data (N, P, A) m1, m2, …, mx
  • 21. Generation- Generation-encryption (cont’d) 2. Counter mode is applied to encrypt data and MAC
  • 22. Generation- Generation-encryption (cont’d) 3. Output ciphertext C= MAC Payload K
  • 23. Decryption- Decryption-verification Counter mode decryption Computation of MAC with CBC-MAC CBC- (N, A, P’) Verification of authenticity Output: Payload / INVALID
  • 24. Hardware implementation CCM cannot be parallelized Operations to be implemented: Encryption: hw implementation of AES cipher XOR Counter increment Formatting function
  • 25. Security Recommendations Keys must be secret and “fresh” IV: 0 for CBC-MAC CBC- Never use the same nonce twice Max n° of nonce with the same key: 261 n° Choose an appropriate MAC length Replay attacks: use of timestamps / number packets
  • 26. A possible attack “be conservative in what you send, and liberal in what you accept” 16-byte MAC 12-byte MAC 16-byte MAC 8-byte MAC 4-byte MAC
  • 27. A possible attack (cont’d) Here comes the bad guy !! 16-byte MAC 12-byte MAC 4-byte MAC 8-byte MAC 4-byte MAC
  • 28. A possible attack (cont’d) 232 4-byte MAC computed At least one valid ciphertext !!!
  • 29. Countermeasures Fix the tag length parameter During key negotiation Never change it during the current session
  • 31. What is GCM - GMAC An authenticated encryption solution Encryption Use of the block cipher AES Mode of operation similar to the CTR Authentication The MAC provided is a sort of keyed digest Can provide authentication only → GMAC
  • 32. Main features Extremely fast, more than 10Gbps Easy to implement in software and hardware Can be used for authentication only, if desired Designed for AES, optimized for 128 bits Arbitrary length IV, optimized for 96 bits Only one key for authentication and encryption No intellectual property restrictions
  • 34. Version for human beings 1. The hash sub-key H is computed and stored sub- 0000000000000000 0000000000000000 0000000000000000 0000000000000000 Enc K H 0000000000000000 0000000000000000 0000000000000000 0000000000000000
  • 35. Version for human beings 2. The IV length is checked If it’s 96 bits is padded to 128 If it’s different is computed a 128 bit IV using a special function (GHASH) The IV is the starting value of the counter
  • 36. Version for human beings 3. Encryption
  • 37. Version for human beings 4. Authentication GF(2128)
  • 38. Hardware implementation The only way to manage more than 10Gbps GCM can be parallelized Operations to be implemented: Encryption: hw implementation of AES cipher XOR Increment of the counter Multiplication within GF(2128)
  • 40. The multiplication in GF(2q) Different approaches Parallel Serial: super serial, bit serial, etc Serial solutions Time and area linear with q Parallel solution Time: 1 clock cycle Area: quadratic with q, but only 30% of AES cipher GO PARALLEL, BOYS!
  • 41. Security Recommendations Keys: secret and “fresh” IV: probability of using same IV and key < 2-32 Known security problem with reused IVs Appropriate tag length Replay attacks: use of timestamps
  • 42. Oracles... Permutation oracle Outputs random number of PRF The PRF represent an encrypted message Distinguishing advantage
  • 43. Oracles... Tag- Tag-generation oracle Input: a message Output: a valid tag Tag- Tag-validation oracle Input: a message and a tag Output: is the tag correct for the given message? Forgery advantage
  • 44. CTR known issue Hello world, 72dd0294rth%p this is me, 29sj!5z/k=p life should be akd'^3sddG#/ap5 fun for everyone 97;7*h2?375ba+?9 Hello Sarah, Sarah, 72dd023&F7j%p 72dd023&F7j%p this is me, 29sj!5z/k=p life should be akd'^3sddG#/ap5 fun for everyone 97;7*h2?375ba+?9
  • 45. Beware ! Attacker with access to a tag-generation oracle tag- If IVs are not changed the output will be function of the hash sub-key H sub- Analyzing the resulting tags the attacker could recover H With H he can generate valid authentication tags, thus pretending to be your friend !
  • 46. Solution This attack is possible only if you use at least twice the same key with the same IV NEVER DO THAT!
  • 47. References NIST Special Publication 800-38C (CCM) 800- NIST Special Publication 800-38D (GCM) 800- Authenticated Encryption (J. Black) A Critique of CCM (P. Rogaway, D. Wagner) On The Security of CTR + CBC-MAC (J. Jonsson) CBC- Counter with CBC-MAC (D. Whiting, R. Housley, N. Ferguson) CBC- Flexible and Efficient Message Authentication in Hardware and Software (D. A. McGrew, J. Viega) The Security and Performance of the Galois/Counter Mode (GCM) of Operation (D. A. McGrew, J. Viega) www.wikipedia.org