1 / 24

Cryptography

Cryptography. Cryptography is the science and art of transforming messages to make them secure and immune to attacks. It involves plaintext, encryption algorithm, ciphertext and decryption algorithm. Two types of cryptography exist: Symmetric-key cryptography and Public-key cryptography.

yori
Télécharger la présentation

Cryptography

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Cryptography • Cryptography is the science and art of transforming messages to make them secure and immune to attacks. • It involves plaintext, encryption algorithm, ciphertext and decryption algorithm. • Two types of cryptography exist: • Symmetric-key cryptography and • Public-key cryptography Security

  2. Figure 29.1Cryptography components

  3. Figure 29.2Encryption and decryption

  4. Symmetric-key Cryptography (SKC) • In SKC, the same key is used by both communicating parties. • The algorithm used for decryption is the inverse of the algorithm used for encryption. • Advantages: • Efficient • Disadvantages: • Large number of keys required for large number of communicating parties. Security

  5. Figure 29.3Symmetric-key cryptography

  6. SKC (Continued…) • Traditional ciphers • Substitution cipher • Monoalphabetic • Polyalphabetic • Transpositional cipher • Block ciphers • P-Box • S-Box • Product Block • Data Encryption Standard (DES) Security

  7. Traditional Cipher • Data encryption is based on character. • Monoalphabetic • One character will be represented by only one other character. • Polyalphabetic • One character may be represented by more than just one other character depending on the encryption algorithm used. Security

  8. Figure 29.4Caesar cipher

  9. Figure 29.5Example of monoalphabetic substitution

  10. Figure 29.6Vigenere cipher

  11. Block Cipher • Data encryption is based on block of bits • P-box • Transposition at bit level • S-box • Combines substitution and transposition (P-box) • Product block • More complex combination of P- and S-box • DES • Complex algorithm applied by the US government for nonmilitary and nonclassified use. Security

  12. Figure 29.7Transpositional cipher

  13. Figure 29.8Block cipher

  14. Figure 29.9P-box

  15. Figure 29.10S-box

  16. Figure 29.11Product block

  17. Figure 29.12DES

  18. Figure 29.13General scheme of DES

  19. Figure 29.14Iteration block

  20. Public-key Cryptography (PKC) • Two different keys are used, private key and public key. • Private key is known only by the receiver. • Public key is used by the senders. • Advantages: • The number of keys required for a large number of users is greatly reduced. • Disadvantages: • Complex algorithm used. • Sender authentication is required Security

  21. Figure 29.20Public-key cryptography

  22. RSA • The private key is a pair of numbers N and e. • The public key is also a pair of numbers N and d. N are common to both parties. • To encrypt a message: • C = Pe mod N where P is the plain text value • To decrypt a message: • P = Cd mod N where C is the ciphertext value Security

  23. Figure 29.21RSA

  24. RSA (Continued…) • To ensure the success of its application: • Choose two large prime numbers p and q. • Compute N = p x q. • Choose e (less than N) such that e and (p-1)(q-1) are relatively prime (having no common factor other than 1) • Choose d such that (e x d) mod [(p-1)(q-1)] is equal to 1 Security

More Related