SlideShare une entreprise Scribd logo
1  sur  31
CONTENTS
o   Introduction
o   Need of Cryptography
o   Types of Attacks
o   Techniques of Cryptography
o   Encryption Algorithm
    •   Symmetric
    •   Asymmetric
o   Digital Signature
o   Conclusion
INTRODUCTION
 What   is Cryptography?
     “Hidden Writing”

     Mainly used to protect Information.


 Goal   of Cryptography

     Ensure security of communication over insecure
      medium

     Communicate even with possibility of adversary
NEED OF ENCRYPTION
 Confidentiality

 Integrity

 Authentication

 Nonrepudiation

 Access  Control
 Availability
TYPES OF ATTACKS
   A General View

   A Technical View

   A Practical Side of Attacks

   Programs that Attack
PLAIN                                      PLAIN
     TEXT                                       TEXT




             ENCRYPTION            DECRYPTION




                          CIPHER
                           TEXT
SENDER                                                  RECEIVER



                    BASIC BLOCK DIAGRAM
BASIC TERMINOLOGIES
 Encryption
     Encryption is the process of encoding a message so that its
      meaning is not obvious
 Decryption
     Decryption is the reverse process, transforming an encrypted
      message back into its normal, original form
 Cryptosystem
     A system for     encryption   and   decryption   is   called   a
      cryptosystem.
BASIC TERMINOLOGIES
 Plaintext
 Cipher     text
 Key    –
     key refers to a sequence of symbols or a numerical value used
      by an algorithm to alter information & making that information
      secure
 Encryption        algorithm
     The cryptosystem involves a set of rules for how to encrypt the
      plaintext and how to decrypt the cipher text.
 Cryptanalysis
     Cryptanalysis is an attempt to break the cipher text.
TECHNIQUES OF CRYPTOGRAPHY
 Substitution   Technique

     Caesar Cipher
     Monoalphabetic Cipher
     Homophonic Cipher
     Polyalphabetic Cipher
 Transposition   Technique

     Rail Fence Technique
     Vernam Cipher(One -time Pads)
     Simple Columnar Cipher
ENCRYPTION ALGORITHM
 Symmetric
    Same key for encryption and decryption

    Key distribution problem


 Asymmetric
    Key pairs for encryption and decryption

    Public and private keys
SYMMETRIC ALGORITHM
 It   is also called as Secret Key Cryptography
    Single key used for both encrypt & decrypt
    Key must be known to both the parties




              Key

                                                                   Original
  Plaintext                        Ciphertext                      Plaintext
                    Encryption                        Decryption


                             Symmetric Cryptosystem
ASYMMETRIC ALGORITHM
 Private keys are used for decrypting.
 Public keys are used for encrypting


                     encryption
    plaintext                             ciphertext
                     public key

                     decryption
   ciphertext                              plaintext
                     private key
COMPARISON
                    Secret Key (Symmetric)     Public Key (Asymmetric)
Number of Key       1                          2
Protection of Key   Must be kept secret        One key must be kept secret
                                               & other can be freely
                                               exposed
Best Uses           secrecy and integrity of   Key exchange, authentication
                    data



Key Distribution    Problematic                Safer


Speed               Fast                       Slow; typically, 10,000 times
                                               slower than secret key
SYMMETRIC ALGORITHM

 Data   Encryption Standard (DES):
  56 bits key


 Advance       Encryption Standard (AES):
 128, 192 or 256 bits key


 International
             Data Encryption
 Algorithm(IDEA):
 128 bits key
DATA ENCRYPTION STANDARD
 Developed by IBM and it is known as the Data Encryption
  Standard
 It is also known as Data Encryption Algorithm

 The DES algorithm is a careful and complex combination of
  two fundamental building blocks of encryption:
    Substitution and
    Transposition
 DES uses only standard arithmetic and logical operations on
  numbers up to 64 bits long
Plain text (64 bits)



          Initial Permutation (IP)



          LPT                RPT



key     16 rounds          16 rounds   key



             Final Permutation



             Cipher text (64 bits)



      BROAD LEVEL STEPS IN DES
DATA ENCRYPTION STANDARD
 1st  64 bit plain text is handed over to initial
  permutation function.
 IP is performed over the plain text.
 IP produces two halves of the permuted blocks
  left plain text (LPT) & right plain text (RPT).
 Now LPT & RPT goes 16 rounds of encryption
  process, each with its own key.
 Now LPT & RPT are rejoined and FINAL
  PERMUTATION (FP) is performed on the
  combined block.
 The result is 64 bit cipher text.
DETAILS OF ONE ROUND IN DES

             Key Transformation


            Expansion Permutation


             S- box Substitution


             P- box Permutation


               XOR and Swap
ADVANTAGES OF DES:

o   DES is also an ANSI and ISO standard - anybody
    can learn the details and implement it.
o   Since DES was designed to run on hardware, it is
    fast in hardware.
o   Hard to crack.


DISADVANTAGES OF DES:

o   Hardware implementations of DES are very fast;
    DES was not designed for software and hence runs
    relatively slowly.
ASYMMETRIC ALGORITHM
   Rivest Shamir Adleman (RSA) Encryption:

    Based on factoring the product of large prime numbers.

   Knapsack Algorithm:

    If M1,M2…., Mn are given values & S is the sum,
    S=b1M1+b2M2….+bnMn
    where, bi can be 0 or 1
RSA

 It is named after its three inventors Rivest
  Shamir and Adleman
 This algorithm was introduced in 1978 and to
  date remains secure.
 RSA has been the subject of extensive
  cryptanalysis, and no serious flaws have yet been
  found.
 The encryption algorithm is based on the
  underlying problem of factoring large numbers.
RSA

   p and q are two large prime numbers

   n=p.q

   m = (p-1)(q-1)

   a is such that 1 < a < m and gcd (m , a) = 1.

   b is such that ( a. b) mod m = 1
RSA ENCRYPTION & DECRYPTION

 Message M < n.
 Encryption key = (a , n).

 Decryption key = (b , n).

 Encrypt => E = Ma mod n.

 Decrypt => M = Eb mod n.
 Advantage


     Individuals can post their public key on their Web
      site.
     The number of the keys is only twice of the
      number of user.

 Disadvantage


     It is slower than symmetric algorithms.
     The cipher text may be larger than plain text.
DIGITAL SIGNATURE
    When an author signs a document, it cannot
     be changed.

    When you send a document
     electronically, you can also sign it.

    Digital signature can be done in two ways:

        You can sign the whole document

        You can sign a digest of the document
Signing the whole document




 You can not provide these aspects of security using the
  secret key.
 The method provides authentication & non-repudiation.
Signing the digest




 The   two most common hash functions are:
     Message digest 5 (MD5)
     Secure hash algorithm (SHA-1)
 The   properties of hash function
     One-way: the digest can only be created from the
      message, but not vice versa
     One-to-one: be very difficult to find two messages that
      create the same digest.
Sender site
Receiver site
APPLICATIONS OF ENCRYPTION
   Cryptographic Hash Function

   Digital Signature

   Certificate

   Secure electronic transactions

   Office equipment
CONCLUSION
 RSA finds its strongest application when parties
  who have no prior relationship want to share
  sensitive data with each other.
 Thus , even though slower as compared to
  symmetric algorithms it is & will be widely used as it
  can be used in digital signature for long haul
  transmission.
Cryptography

Contenu connexe

Tendances

Tendances (20)

Advanced cryptography and implementation
Advanced cryptography and implementationAdvanced cryptography and implementation
Advanced cryptography and implementation
 
cryptography
cryptographycryptography
cryptography
 
Introduction to Cryptography
Introduction to CryptographyIntroduction to Cryptography
Introduction to Cryptography
 
Cryptography
CryptographyCryptography
Cryptography
 
Cryptography
CryptographyCryptography
Cryptography
 
Cryptography.ppt
Cryptography.pptCryptography.ppt
Cryptography.ppt
 
Cryptography
CryptographyCryptography
Cryptography
 
Cryptography
CryptographyCryptography
Cryptography
 
DES
DESDES
DES
 
Introduction to Cryptography
Introduction to CryptographyIntroduction to Cryptography
Introduction to Cryptography
 
Encryption technology
Encryption technologyEncryption technology
Encryption technology
 
Topic20 The RC4 Algorithm.pptx
Topic20 The RC4 Algorithm.pptxTopic20 The RC4 Algorithm.pptx
Topic20 The RC4 Algorithm.pptx
 
Information Security Cryptography ( L02- Types Cryptography)
Information Security Cryptography ( L02- Types Cryptography)Information Security Cryptography ( L02- Types Cryptography)
Information Security Cryptography ( L02- Types Cryptography)
 
Cryptography Intro
Cryptography IntroCryptography Intro
Cryptography Intro
 
DES (Data Encryption Standard) pressentation
DES (Data Encryption Standard) pressentationDES (Data Encryption Standard) pressentation
DES (Data Encryption Standard) pressentation
 
Basic cryptography
Basic cryptographyBasic cryptography
Basic cryptography
 
Overview of cryptography
Overview of cryptographyOverview of cryptography
Overview of cryptography
 
Cryptography - Block cipher & stream cipher
Cryptography - Block cipher & stream cipherCryptography - Block cipher & stream cipher
Cryptography - Block cipher & stream cipher
 
Cryptography - 101
Cryptography - 101Cryptography - 101
Cryptography - 101
 
Cryptography
Cryptography Cryptography
Cryptography
 

En vedette

Cryptography and network security
Cryptography and network securityCryptography and network security
Cryptography and network securitypatisa
 
What is Cryptography?
What is Cryptography?What is Cryptography?
What is Cryptography?Pratik Poddar
 
Network Security and Cryptography
Network Security and CryptographyNetwork Security and Cryptography
Network Security and CryptographyAdam Reagan
 
Digital Signature
Digital SignatureDigital Signature
Digital Signaturesaurav5884
 
Data encryption, Description, DES
Data encryption, Description, DESData encryption, Description, DES
Data encryption, Description, DESHuawei Technologies
 
Digital signature
Digital  signatureDigital  signature
Digital signatureAJAL A J
 
Hash Techniques in Cryptography
Hash Techniques in CryptographyHash Techniques in Cryptography
Hash Techniques in CryptographyBasudev Saha
 
Basic Encryption Decryption Chapter 2
Basic Encryption Decryption Chapter 2Basic Encryption Decryption Chapter 2
Basic Encryption Decryption Chapter 2AfiqEfendy Zaen
 
Digital signature
Digital  signatureDigital  signature
Digital signatureAJAL A J
 
Aes (advance encryption standard)
Aes (advance encryption standard) Aes (advance encryption standard)
Aes (advance encryption standard) Sina Manavi
 
Idea(international data encryption algorithm)
Idea(international data encryption algorithm)Idea(international data encryption algorithm)
Idea(international data encryption algorithm)SAurabh PRajapati
 
Network security & cryptography
Network security & cryptographyNetwork security & cryptography
Network security & cryptographyRahulprasad Yadav
 
symmetric key encryption algorithms
 symmetric key encryption algorithms symmetric key encryption algorithms
symmetric key encryption algorithmsRashmi Burugupalli
 
Image encryption and decryption
Image encryption and decryptionImage encryption and decryption
Image encryption and decryptionAashish R
 
Seminar ppt on digital signature
Seminar ppt on digital signatureSeminar ppt on digital signature
Seminar ppt on digital signaturejolly9293
 
Introduction to Digital signatures
Introduction to Digital signaturesIntroduction to Digital signatures
Introduction to Digital signaturesRohit Bhat
 

En vedette (20)

Cryptography
CryptographyCryptography
Cryptography
 
Cryptography and network security
Cryptography and network securityCryptography and network security
Cryptography and network security
 
Cryptography
CryptographyCryptography
Cryptography
 
What is Cryptography?
What is Cryptography?What is Cryptography?
What is Cryptography?
 
Network Security and Cryptography
Network Security and CryptographyNetwork Security and Cryptography
Network Security and Cryptography
 
Digital Signature
Digital SignatureDigital Signature
Digital Signature
 
Data encryption, Description, DES
Data encryption, Description, DESData encryption, Description, DES
Data encryption, Description, DES
 
Tiny encryption algorithm
Tiny encryption algorithmTiny encryption algorithm
Tiny encryption algorithm
 
Digital signature
Digital  signatureDigital  signature
Digital signature
 
Hash Techniques in Cryptography
Hash Techniques in CryptographyHash Techniques in Cryptography
Hash Techniques in Cryptography
 
Basic Encryption Decryption Chapter 2
Basic Encryption Decryption Chapter 2Basic Encryption Decryption Chapter 2
Basic Encryption Decryption Chapter 2
 
Encryption
EncryptionEncryption
Encryption
 
Digital signature
Digital  signatureDigital  signature
Digital signature
 
Aes (advance encryption standard)
Aes (advance encryption standard) Aes (advance encryption standard)
Aes (advance encryption standard)
 
Idea(international data encryption algorithm)
Idea(international data encryption algorithm)Idea(international data encryption algorithm)
Idea(international data encryption algorithm)
 
Network security & cryptography
Network security & cryptographyNetwork security & cryptography
Network security & cryptography
 
symmetric key encryption algorithms
 symmetric key encryption algorithms symmetric key encryption algorithms
symmetric key encryption algorithms
 
Image encryption and decryption
Image encryption and decryptionImage encryption and decryption
Image encryption and decryption
 
Seminar ppt on digital signature
Seminar ppt on digital signatureSeminar ppt on digital signature
Seminar ppt on digital signature
 
Introduction to Digital signatures
Introduction to Digital signaturesIntroduction to Digital signatures
Introduction to Digital signatures
 

Similaire à Cryptography

Introduction to Cryptography
Introduction to CryptographyIntroduction to Cryptography
Introduction to CryptographySeema Goel
 
6. cryptography
6. cryptography6. cryptography
6. cryptography7wounders
 
Seminar on Encryption and Authenticity
Seminar on Encryption and AuthenticitySeminar on Encryption and Authenticity
Seminar on Encryption and AuthenticityHardik Manocha
 
Cryptography by Durlab Kumbhakar
Cryptography by Durlab KumbhakarCryptography by Durlab Kumbhakar
Cryptography by Durlab KumbhakarDurlove Kumbhakar
 
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptxSecret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptxukd789555
 
Ch12 Encryption
Ch12 EncryptionCh12 Encryption
Ch12 Encryptionphanleson
 
An Understanding And Perspectives of END TO END ENCRYPTION (4).pdf
An Understanding And Perspectives of END TO END ENCRYPTION (4).pdfAn Understanding And Perspectives of END TO END ENCRYPTION (4).pdf
An Understanding And Perspectives of END TO END ENCRYPTION (4).pdfKailasS9
 
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptxSecret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptxjibonjibon5
 
cryptography-Final.pptx
cryptography-Final.pptxcryptography-Final.pptx
cryptography-Final.pptxkarthikvcyber
 
Basic Cryptography.pdf
Basic Cryptography.pdfBasic Cryptography.pdf
Basic Cryptography.pdfSetiya Nugroho
 
Introduction To PKI Technology
Introduction To PKI TechnologyIntroduction To PKI Technology
Introduction To PKI TechnologySylvain Maret
 
Cryptography
CryptographyCryptography
CryptographyRohan04
 
Computer Security (Cryptography) Ch01
Computer Security (Cryptography) Ch01Computer Security (Cryptography) Ch01
Computer Security (Cryptography) Ch01Saif Kassim
 

Similaire à Cryptography (20)

Elementry Cryptography
Elementry CryptographyElementry Cryptography
Elementry Cryptography
 
Introduction to Cryptography
Introduction to CryptographyIntroduction to Cryptography
Introduction to Cryptography
 
6. cryptography
6. cryptography6. cryptography
6. cryptography
 
Seminar on Encryption and Authenticity
Seminar on Encryption and AuthenticitySeminar on Encryption and Authenticity
Seminar on Encryption and Authenticity
 
Cryptography by Durlab Kumbhakar
Cryptography by Durlab KumbhakarCryptography by Durlab Kumbhakar
Cryptography by Durlab Kumbhakar
 
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptxSecret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
 
Ch12 Encryption
Ch12 EncryptionCh12 Encryption
Ch12 Encryption
 
An Understanding And Perspectives of END TO END ENCRYPTION (4).pdf
An Understanding And Perspectives of END TO END ENCRYPTION (4).pdfAn Understanding And Perspectives of END TO END ENCRYPTION (4).pdf
An Understanding And Perspectives of END TO END ENCRYPTION (4).pdf
 
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptxSecret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
Secret-Key-Cryptography-ppt-by-alljobs.co_.in_.pptx
 
Cryptography
CryptographyCryptography
Cryptography
 
cryptography-Final.pptx
cryptography-Final.pptxcryptography-Final.pptx
cryptography-Final.pptx
 
Basic Cryptography.pdf
Basic Cryptography.pdfBasic Cryptography.pdf
Basic Cryptography.pdf
 
IS-cryptograpy algorithms.pptx
IS-cryptograpy algorithms.pptxIS-cryptograpy algorithms.pptx
IS-cryptograpy algorithms.pptx
 
82 86
82 8682 86
82 86
 
82 86
82 8682 86
82 86
 
Introduction To PKI Technology
Introduction To PKI TechnologyIntroduction To PKI Technology
Introduction To PKI Technology
 
Cryptography
CryptographyCryptography
Cryptography
 
Cryptography
CryptographyCryptography
Cryptography
 
Computer Security (Cryptography) Ch01
Computer Security (Cryptography) Ch01Computer Security (Cryptography) Ch01
Computer Security (Cryptography) Ch01
 
Day5
Day5Day5
Day5
 

Dernier

H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 

Dernier (20)

H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 

Cryptography

  • 1. CONTENTS o Introduction o Need of Cryptography o Types of Attacks o Techniques of Cryptography o Encryption Algorithm • Symmetric • Asymmetric o Digital Signature o Conclusion
  • 2. INTRODUCTION  What is Cryptography?  “Hidden Writing”  Mainly used to protect Information.  Goal of Cryptography  Ensure security of communication over insecure medium  Communicate even with possibility of adversary
  • 3. NEED OF ENCRYPTION  Confidentiality  Integrity  Authentication  Nonrepudiation  Access Control  Availability
  • 4. TYPES OF ATTACKS  A General View  A Technical View  A Practical Side of Attacks  Programs that Attack
  • 5. PLAIN PLAIN TEXT TEXT ENCRYPTION DECRYPTION CIPHER TEXT SENDER RECEIVER BASIC BLOCK DIAGRAM
  • 6. BASIC TERMINOLOGIES  Encryption  Encryption is the process of encoding a message so that its meaning is not obvious  Decryption  Decryption is the reverse process, transforming an encrypted message back into its normal, original form  Cryptosystem  A system for encryption and decryption is called a cryptosystem.
  • 7. BASIC TERMINOLOGIES  Plaintext  Cipher text  Key –  key refers to a sequence of symbols or a numerical value used by an algorithm to alter information & making that information secure  Encryption algorithm  The cryptosystem involves a set of rules for how to encrypt the plaintext and how to decrypt the cipher text.  Cryptanalysis  Cryptanalysis is an attempt to break the cipher text.
  • 8. TECHNIQUES OF CRYPTOGRAPHY  Substitution Technique  Caesar Cipher  Monoalphabetic Cipher  Homophonic Cipher  Polyalphabetic Cipher  Transposition Technique  Rail Fence Technique  Vernam Cipher(One -time Pads)  Simple Columnar Cipher
  • 9. ENCRYPTION ALGORITHM  Symmetric  Same key for encryption and decryption  Key distribution problem  Asymmetric  Key pairs for encryption and decryption  Public and private keys
  • 10. SYMMETRIC ALGORITHM  It is also called as Secret Key Cryptography  Single key used for both encrypt & decrypt  Key must be known to both the parties Key Original Plaintext Ciphertext Plaintext Encryption Decryption Symmetric Cryptosystem
  • 11. ASYMMETRIC ALGORITHM  Private keys are used for decrypting.  Public keys are used for encrypting encryption plaintext ciphertext public key decryption ciphertext plaintext private key
  • 12. COMPARISON Secret Key (Symmetric) Public Key (Asymmetric) Number of Key 1 2 Protection of Key Must be kept secret One key must be kept secret & other can be freely exposed Best Uses secrecy and integrity of Key exchange, authentication data Key Distribution Problematic Safer Speed Fast Slow; typically, 10,000 times slower than secret key
  • 13. SYMMETRIC ALGORITHM  Data Encryption Standard (DES): 56 bits key  Advance Encryption Standard (AES): 128, 192 or 256 bits key  International Data Encryption Algorithm(IDEA): 128 bits key
  • 14. DATA ENCRYPTION STANDARD  Developed by IBM and it is known as the Data Encryption Standard  It is also known as Data Encryption Algorithm  The DES algorithm is a careful and complex combination of two fundamental building blocks of encryption:  Substitution and  Transposition  DES uses only standard arithmetic and logical operations on numbers up to 64 bits long
  • 15. Plain text (64 bits) Initial Permutation (IP) LPT RPT key 16 rounds 16 rounds key Final Permutation Cipher text (64 bits) BROAD LEVEL STEPS IN DES
  • 16. DATA ENCRYPTION STANDARD  1st 64 bit plain text is handed over to initial permutation function.  IP is performed over the plain text.  IP produces two halves of the permuted blocks left plain text (LPT) & right plain text (RPT).  Now LPT & RPT goes 16 rounds of encryption process, each with its own key.  Now LPT & RPT are rejoined and FINAL PERMUTATION (FP) is performed on the combined block.  The result is 64 bit cipher text.
  • 17. DETAILS OF ONE ROUND IN DES Key Transformation Expansion Permutation S- box Substitution P- box Permutation XOR and Swap
  • 18. ADVANTAGES OF DES: o DES is also an ANSI and ISO standard - anybody can learn the details and implement it. o Since DES was designed to run on hardware, it is fast in hardware. o Hard to crack. DISADVANTAGES OF DES: o Hardware implementations of DES are very fast; DES was not designed for software and hence runs relatively slowly.
  • 19. ASYMMETRIC ALGORITHM  Rivest Shamir Adleman (RSA) Encryption: Based on factoring the product of large prime numbers.  Knapsack Algorithm: If M1,M2…., Mn are given values & S is the sum, S=b1M1+b2M2….+bnMn where, bi can be 0 or 1
  • 20. RSA  It is named after its three inventors Rivest Shamir and Adleman  This algorithm was introduced in 1978 and to date remains secure.  RSA has been the subject of extensive cryptanalysis, and no serious flaws have yet been found.  The encryption algorithm is based on the underlying problem of factoring large numbers.
  • 21. RSA  p and q are two large prime numbers  n=p.q  m = (p-1)(q-1)  a is such that 1 < a < m and gcd (m , a) = 1.  b is such that ( a. b) mod m = 1
  • 22. RSA ENCRYPTION & DECRYPTION  Message M < n.  Encryption key = (a , n).  Decryption key = (b , n).  Encrypt => E = Ma mod n.  Decrypt => M = Eb mod n.
  • 23.  Advantage  Individuals can post their public key on their Web site.  The number of the keys is only twice of the number of user.  Disadvantage  It is slower than symmetric algorithms.  The cipher text may be larger than plain text.
  • 24. DIGITAL SIGNATURE  When an author signs a document, it cannot be changed.  When you send a document electronically, you can also sign it.  Digital signature can be done in two ways:  You can sign the whole document  You can sign a digest of the document
  • 25. Signing the whole document  You can not provide these aspects of security using the secret key.  The method provides authentication & non-repudiation.
  • 26. Signing the digest  The two most common hash functions are:  Message digest 5 (MD5)  Secure hash algorithm (SHA-1)  The properties of hash function  One-way: the digest can only be created from the message, but not vice versa  One-to-one: be very difficult to find two messages that create the same digest.
  • 29. APPLICATIONS OF ENCRYPTION  Cryptographic Hash Function  Digital Signature  Certificate  Secure electronic transactions  Office equipment
  • 30. CONCLUSION  RSA finds its strongest application when parties who have no prior relationship want to share sensitive data with each other.  Thus , even though slower as compared to symmetric algorithms it is & will be widely used as it can be used in digital signature for long haul transmission.