SlideShare a Scribd company logo
1
Fluency with Information Technology
Lawrence Snyder
Chapter 17 Privacy & Digital Security
Encryption
2
Encryption And Decryption
Encryption Terminology
 Encryption: Transform representation so it is no
longer understandable
 Cryptosystem: A combination of encryption and
decryption methods
 Cleartext or Plaintext: Information before encryption
 Cipher text: Information in encrypted form
 One-way cipher: Encryption system that cannot be easily reversed
(used for passwords)
 Decryption: Reversing encryption process
3
Encryption And Decryption
To ensure the privacy of messages sent over a network between a source and
destination, the text can be encrypted.
 Cryptography - study of methods to encrypt text.
 Cryptanalysis - study of how to decode an encypted text.
Conventional or single key encryption - a simple algorithm is used to
transform the text
 substitution cipher - each letter of the alphabet is substituted with a different
letter or symbol.
 Ceasar's method - replace every letter in the alphabet with the letter 3 away
A - > D
B - > E
C - > F
. . .
X - > A
Y - > B
Z - > C
4
Encryption And Decryption
 Other substitution ciphers assign random substitutions, so they are a
bit harder to crack.
 The sender uses the encryption to encrypt the message
 The sender transmits the message to the receiver
 The receiver decodes the message
 How does the receiver decode the message? The sender needs to
send the key to the receiver.
 How can this be done securely so that no one else can decode the
message?
 To secure e-commerce transactions on the Web, the buyer’s machine
must encrypt the data before it sends it over the Internet to the
merchant’s Web server
5
Encryption And Decryption
 Most encryption algorithms use mathematical formulas and an
encryption key to encode the data
 The encryption key is a very large number used to encrypt and
decrypt the data
 The length of the key (the number of digits it contains)
determines how secure the data will be – the longer the key the
more secure the message
 Most encryption algorithms use key length between 40 and 128
bit or more
 Most Web browsers support these length keys
6
Encryption And Decryption
Symmetric/ Private Key Encryption
 Uses a single number key to encode and decode the data. Both the sender
and receiver must know the key
 DES (Data Encryption Standard) is the most widely used standard for
symmetric encryption
 Because each sender and receiver would require a different key, this type
of encryption is basically used by government entities
 It is rarely used for e-commerce transactions over the Internet
 Requires a secure way to get the key to both parties
7
Encryption And Decryption
Asymmetric / Public Key Encryption
 Uses two numeric keys
 The public key is available to anyone wishing to communicate securely with the
key’s owner
 The private key is available only to the owner
 Both keys are able to encrypt and decrypt each other’s messages
 It is computationally infeasible to deduce the private key from the public
key. Anyone who has a public key can encrypt information but cannot
decrypt it. Only the person who has the corresponding private key can
decrypt the information.
 Example: encode by raising to 5th
power and moding result with 91
Decode by raising to 29th
power mod 91
325
= 2 (mod 91) and 229
=32 (mod 91)
8
Assymetric Encryption
 Choose two large prime numbers, p and q and compute
N = p * q and x = (p-1)*(q-1)
 Choose a number relatively prime to x and call it e. This means
that e is not a prime factor of x or a multiple of it.
 Find d such that e * d = 1 mod x.
To encrypt: Cipher = Plaintexte
(mod n)
To decrypt: Plaintext = Cipherd
(mod n)
 Choose p = 7 and q = 13
 We then calculate N = 7 13 = 91 and x=(∗ p−1)(q−1) = 72
 We next select ke relatively prime to 72 and< 72, yielding 5
 Finally,we calculate kd such that kekd mod 72 = 1, yielding 29
 public key (ke, N) = (5, 91) and private key (kd ,N) = (29, 91)
32 codes in 2: 325
= 2 (mod 91)
2 decodes into 32: 229
=32 (mod 91)
9
Encryption And Decryption
Asymmetric / Public Key Encryption
 The primary benefit of asymmetric cryptography is that it allows people who
have no preexisting security arrangement to exchange messages securely.
 The need for sender and receiver to share secret keys via some secure
channel is eliminated
 all communications involve only public keys, and no private key is ever
transmitted or shared.
 Some examples of public-key cryptosystems are
 Elgamal (named for its inventor, Taher Elgamal)
 RSA (named for its inventors, Ron Rivest, Adi Shamir, and Leonard Adleman)
 Diffie-Hellman (named, you guessed it, for its inventors)
 DSA, the Digital Signature Algorithm (invented by David Kravitz).
 PGP (Pretty Good Privacy) is fairly popular and inexpensive
 Because conventional cryptography was once the only available means for
relaying secret information, the expense of secure channels and key
distribution relegated its use only to those who could afford it, such as
governments and large banks
 Public key encryption is the technological revolution that provides strong
cryptography to the public
10
Digital Certificates
Digital Certificates
 Use assymetric encryption to create digital signatures
 Used on the Internet to authenticate both users and vendors
 A digital certificate is a unique identifier assigned to a user/vendor by a
certification authority to verify the identity of the user/vendor
 A certification authority (such as VeriSign) is a private company that
certifies the user or vendor is who s/he claims to be
 Work together with credit card verification companies or other
financial institutions in order to verify the identity of the certificate’s
requesters
 Digital signature is an encrypted attachment added to the electronic
message to verify the sender’s identity
 The digital certificate received by the user includes a copy of its public
key
 This digital certificate’s owner makes its public key available to
anyone wanting to send encryped documents to the certificate’s
owner
11
Digital Signatures
Instead of encrypting information using someone else's public
key, you encrypt it with your private key. If the information
can be decrypted with your public key, then it must have
originated with you.
12
VeriSign – certification authority
13
How PGP Works - Encryption
 PGP combines some of the best features of both conventional and
public key cryptography; it’s a hybrid cryptosystem.
 When a user encrypts plaintext with PGP, PGP first compresses the
plaintext.
 Data compression saves transmission time and disk space and, more
importantly, strengthens cryptographic security.
 Most cryptanalysis techniques exploit patterns found in the plaintext to
crack the cipher. Compression reduces these patterns in the plaintext,
thereby greatly enhancing resistance to cryptanalysis.
 PGP then creates a session key, which is a one-time-only secret key.
 This key is a random number generated from the random movements of
your mouse and the keystrokes you type.
 This session key works with a very secure, fast conventional encryption
algorithm to encrypt the plaintext; the result is ciphertext.
 Once the data is encrypted, the session key is then encrypted to the
recipient's public key. This public key-encrypted session key is
transmitted along with the ciphertext to the recipient.
14
How PGP Works - Encryption
15
How PGP works - decryption
Decryption works in the reverse. The recipient's copy of PGP the private key
to recover the temporary session key, which PGP then uses to decrypt the
conventionally-encrypted ciphertext.
The combination of the two encryption methods combines the convenience of
public key encryption with the speed of conventional encryption. Conventional
encryption is about 1, 000 times faster than public key encryption. Public key
encryption in turn provides a solution to key distribution and data transmission
issues. Used together, performance and key distribution are improved without
any sacrifice in security.

More Related Content

PPTX
Encryption techniques
PPT
Encryption
ODP
Encryption Techniques
PPTX
Encryption
PPTX
Data encryption
PPTX
PPT
Network Security and Cryptography
PPTX
Network security and cryptography
Encryption techniques
Encryption
Encryption Techniques
Encryption
Data encryption
Network Security and Cryptography
Network security and cryptography

What's hot (20)

PPTX
Cryptography
PPTX
Seminar on Encryption and Authenticity
DOCX
Data encryption standard
PDF
Data Encryption Standard
PPTX
Encryption
PPT
Cryptography
PPT
6. cryptography
PPTX
A study of cryptography for satellite applications
PPTX
Cryptography
PPTX
Intro to modern cryptography
PPTX
PPTX
Basic Cryptography unit 4 CSS
PPT
Encryption And Decryption
 
PPTX
Different types of Symmetric key Cryptography
PPTX
Cryptography and applications
PDF
Hybrid Cryptography with examples in Ruby and Go
PPS
Itt project
PDF
Triple Data Encryption Standard (t-DES)
PPT
Encryption
PPTX
Information and network security 31 public key cryptography
Cryptography
Seminar on Encryption and Authenticity
Data encryption standard
Data Encryption Standard
Encryption
Cryptography
6. cryptography
A study of cryptography for satellite applications
Cryptography
Intro to modern cryptography
Basic Cryptography unit 4 CSS
Encryption And Decryption
 
Different types of Symmetric key Cryptography
Cryptography and applications
Hybrid Cryptography with examples in Ruby and Go
Itt project
Triple Data Encryption Standard (t-DES)
Encryption
Information and network security 31 public key cryptography
Ad

Similar to Encryption (20)

PDF
An Understanding And Perspectives of END TO END ENCRYPTION (4).pdf
PPTX
Unit 7 : Network Security
DOCX
Computer System Security (UNIT IV) For AKTU Lucknow
PPT
Introduction to cryptography
PDF
Ch12 Encryption
PPTX
Encryption in Cryptography
PPTX
Introduction to Cryptography for btech cse
PPT
PUBLIC KEY & RSA.ppt
PPT
Encryption technology
PPT
Cryptography
PPTX
IS-cryptograpy algorithms.pptx
PPTX
Key distribution code.ppt
PPTX
Rsa Crptosystem
PPT
Java Crypto
PDF
White Paper on Cryptography
PPT
Elementry Cryptography
PPTX
CS_Chapter_2Security concerns of different types of devices.pptx
PPTX
CS_Chapter_2Security concerns of different types of devices.pptx
PPTX
Public key algorithm
PPT
An Understanding And Perspectives of END TO END ENCRYPTION (4).pdf
Unit 7 : Network Security
Computer System Security (UNIT IV) For AKTU Lucknow
Introduction to cryptography
Ch12 Encryption
Encryption in Cryptography
Introduction to Cryptography for btech cse
PUBLIC KEY & RSA.ppt
Encryption technology
Cryptography
IS-cryptograpy algorithms.pptx
Key distribution code.ppt
Rsa Crptosystem
Java Crypto
White Paper on Cryptography
Elementry Cryptography
CS_Chapter_2Security concerns of different types of devices.pptx
CS_Chapter_2Security concerns of different types of devices.pptx
Public key algorithm
Ad

More from Naiyan Noor (20)

PDF
Society Ethics and Technology(HUM3115)-part2.pdf
PDF
Society Ethics and Technology(HUM3115)-part1.pdf
PDF
CAD101EN: Introduction to Web Development with HTML5, CSS3, and JavaScript
PDF
CS50x: CS50's Introduction to Computer Science.pdf
PDF
Diploma in Computer Science and ICT.pdf
PDF
Advanced Learning Algorithms.pdf
PDF
HTML and CSS in depth.pdf
PDF
Skills Development for Mobile Game and Application Project..Naiyan noor
PDF
English for Career Development Naiyan Noor.pdf
PDF
Data Visualization with Python.....Naiyan Noor.pdf
PDF
Databases and SQL for Data Science with Python...Naiyan Noor.pdf
PDF
Data Science Methodology...Naiyan Noor.pdf
PDF
Tools for Data Science ...Naiyan Noor.pdf
PDF
What is Data Science? ... Naiyan Noor.pdf
PDF
Programming for Everybody (Getting Started with Python)...Naiyan Noor.pdf
PDF
HTML, CSS, and Javascript for Web Developers ...Naiyan Noor.pdf
PDF
Introduction to Data Science Naiyan Noor.pdf
PDF
Coursera Programming Foundations with JavaScript, HTML and CSS ....Naiyan Noo...
PDF
Social Media Marketing powered by HP....Naiyan Noor.pdf
PDF
Motor Driving Training with Basic Maintenance. SEIP ..Naiyan Noor.pdf
Society Ethics and Technology(HUM3115)-part2.pdf
Society Ethics and Technology(HUM3115)-part1.pdf
CAD101EN: Introduction to Web Development with HTML5, CSS3, and JavaScript
CS50x: CS50's Introduction to Computer Science.pdf
Diploma in Computer Science and ICT.pdf
Advanced Learning Algorithms.pdf
HTML and CSS in depth.pdf
Skills Development for Mobile Game and Application Project..Naiyan noor
English for Career Development Naiyan Noor.pdf
Data Visualization with Python.....Naiyan Noor.pdf
Databases and SQL for Data Science with Python...Naiyan Noor.pdf
Data Science Methodology...Naiyan Noor.pdf
Tools for Data Science ...Naiyan Noor.pdf
What is Data Science? ... Naiyan Noor.pdf
Programming for Everybody (Getting Started with Python)...Naiyan Noor.pdf
HTML, CSS, and Javascript for Web Developers ...Naiyan Noor.pdf
Introduction to Data Science Naiyan Noor.pdf
Coursera Programming Foundations with JavaScript, HTML and CSS ....Naiyan Noo...
Social Media Marketing powered by HP....Naiyan Noor.pdf
Motor Driving Training with Basic Maintenance. SEIP ..Naiyan Noor.pdf

Recently uploaded (20)

PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPT
Project quality management in manufacturing
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPT
Mechanical Engineering MATERIALS Selection
PDF
PPT on Performance Review to get promotions
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
Geodesy 1.pptx...............................................
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
additive manufacturing of ss316l using mig welding
PDF
Digital Logic Computer Design lecture notes
PPTX
Strings in CPP - Strings in C++ are sequences of characters used to store and...
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
DOCX
573137875-Attendance-Management-System-original
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Project quality management in manufacturing
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
Mechanical Engineering MATERIALS Selection
PPT on Performance Review to get promotions
Internet of Things (IOT) - A guide to understanding
Geodesy 1.pptx...............................................
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
bas. eng. economics group 4 presentation 1.pptx
CYBER-CRIMES AND SECURITY A guide to understanding
additive manufacturing of ss316l using mig welding
Digital Logic Computer Design lecture notes
Strings in CPP - Strings in C++ are sequences of characters used to store and...
CH1 Production IntroductoryConcepts.pptx
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
573137875-Attendance-Management-System-original
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf

Encryption

  • 1. 1 Fluency with Information Technology Lawrence Snyder Chapter 17 Privacy & Digital Security Encryption
  • 2. 2 Encryption And Decryption Encryption Terminology  Encryption: Transform representation so it is no longer understandable  Cryptosystem: A combination of encryption and decryption methods  Cleartext or Plaintext: Information before encryption  Cipher text: Information in encrypted form  One-way cipher: Encryption system that cannot be easily reversed (used for passwords)  Decryption: Reversing encryption process
  • 3. 3 Encryption And Decryption To ensure the privacy of messages sent over a network between a source and destination, the text can be encrypted.  Cryptography - study of methods to encrypt text.  Cryptanalysis - study of how to decode an encypted text. Conventional or single key encryption - a simple algorithm is used to transform the text  substitution cipher - each letter of the alphabet is substituted with a different letter or symbol.  Ceasar's method - replace every letter in the alphabet with the letter 3 away A - > D B - > E C - > F . . . X - > A Y - > B Z - > C
  • 4. 4 Encryption And Decryption  Other substitution ciphers assign random substitutions, so they are a bit harder to crack.  The sender uses the encryption to encrypt the message  The sender transmits the message to the receiver  The receiver decodes the message  How does the receiver decode the message? The sender needs to send the key to the receiver.  How can this be done securely so that no one else can decode the message?  To secure e-commerce transactions on the Web, the buyer’s machine must encrypt the data before it sends it over the Internet to the merchant’s Web server
  • 5. 5 Encryption And Decryption  Most encryption algorithms use mathematical formulas and an encryption key to encode the data  The encryption key is a very large number used to encrypt and decrypt the data  The length of the key (the number of digits it contains) determines how secure the data will be – the longer the key the more secure the message  Most encryption algorithms use key length between 40 and 128 bit or more  Most Web browsers support these length keys
  • 6. 6 Encryption And Decryption Symmetric/ Private Key Encryption  Uses a single number key to encode and decode the data. Both the sender and receiver must know the key  DES (Data Encryption Standard) is the most widely used standard for symmetric encryption  Because each sender and receiver would require a different key, this type of encryption is basically used by government entities  It is rarely used for e-commerce transactions over the Internet  Requires a secure way to get the key to both parties
  • 7. 7 Encryption And Decryption Asymmetric / Public Key Encryption  Uses two numeric keys  The public key is available to anyone wishing to communicate securely with the key’s owner  The private key is available only to the owner  Both keys are able to encrypt and decrypt each other’s messages  It is computationally infeasible to deduce the private key from the public key. Anyone who has a public key can encrypt information but cannot decrypt it. Only the person who has the corresponding private key can decrypt the information.  Example: encode by raising to 5th power and moding result with 91 Decode by raising to 29th power mod 91 325 = 2 (mod 91) and 229 =32 (mod 91)
  • 8. 8 Assymetric Encryption  Choose two large prime numbers, p and q and compute N = p * q and x = (p-1)*(q-1)  Choose a number relatively prime to x and call it e. This means that e is not a prime factor of x or a multiple of it.  Find d such that e * d = 1 mod x. To encrypt: Cipher = Plaintexte (mod n) To decrypt: Plaintext = Cipherd (mod n)  Choose p = 7 and q = 13  We then calculate N = 7 13 = 91 and x=(∗ p−1)(q−1) = 72  We next select ke relatively prime to 72 and< 72, yielding 5  Finally,we calculate kd such that kekd mod 72 = 1, yielding 29  public key (ke, N) = (5, 91) and private key (kd ,N) = (29, 91) 32 codes in 2: 325 = 2 (mod 91) 2 decodes into 32: 229 =32 (mod 91)
  • 9. 9 Encryption And Decryption Asymmetric / Public Key Encryption  The primary benefit of asymmetric cryptography is that it allows people who have no preexisting security arrangement to exchange messages securely.  The need for sender and receiver to share secret keys via some secure channel is eliminated  all communications involve only public keys, and no private key is ever transmitted or shared.  Some examples of public-key cryptosystems are  Elgamal (named for its inventor, Taher Elgamal)  RSA (named for its inventors, Ron Rivest, Adi Shamir, and Leonard Adleman)  Diffie-Hellman (named, you guessed it, for its inventors)  DSA, the Digital Signature Algorithm (invented by David Kravitz).  PGP (Pretty Good Privacy) is fairly popular and inexpensive  Because conventional cryptography was once the only available means for relaying secret information, the expense of secure channels and key distribution relegated its use only to those who could afford it, such as governments and large banks  Public key encryption is the technological revolution that provides strong cryptography to the public
  • 10. 10 Digital Certificates Digital Certificates  Use assymetric encryption to create digital signatures  Used on the Internet to authenticate both users and vendors  A digital certificate is a unique identifier assigned to a user/vendor by a certification authority to verify the identity of the user/vendor  A certification authority (such as VeriSign) is a private company that certifies the user or vendor is who s/he claims to be  Work together with credit card verification companies or other financial institutions in order to verify the identity of the certificate’s requesters  Digital signature is an encrypted attachment added to the electronic message to verify the sender’s identity  The digital certificate received by the user includes a copy of its public key  This digital certificate’s owner makes its public key available to anyone wanting to send encryped documents to the certificate’s owner
  • 11. 11 Digital Signatures Instead of encrypting information using someone else's public key, you encrypt it with your private key. If the information can be decrypted with your public key, then it must have originated with you.
  • 13. 13 How PGP Works - Encryption  PGP combines some of the best features of both conventional and public key cryptography; it’s a hybrid cryptosystem.  When a user encrypts plaintext with PGP, PGP first compresses the plaintext.  Data compression saves transmission time and disk space and, more importantly, strengthens cryptographic security.  Most cryptanalysis techniques exploit patterns found in the plaintext to crack the cipher. Compression reduces these patterns in the plaintext, thereby greatly enhancing resistance to cryptanalysis.  PGP then creates a session key, which is a one-time-only secret key.  This key is a random number generated from the random movements of your mouse and the keystrokes you type.  This session key works with a very secure, fast conventional encryption algorithm to encrypt the plaintext; the result is ciphertext.  Once the data is encrypted, the session key is then encrypted to the recipient's public key. This public key-encrypted session key is transmitted along with the ciphertext to the recipient.
  • 14. 14 How PGP Works - Encryption
  • 15. 15 How PGP works - decryption Decryption works in the reverse. The recipient's copy of PGP the private key to recover the temporary session key, which PGP then uses to decrypt the conventionally-encrypted ciphertext. The combination of the two encryption methods combines the convenience of public key encryption with the speed of conventional encryption. Conventional encryption is about 1, 000 times faster than public key encryption. Public key encryption in turn provides a solution to key distribution and data transmission issues. Used together, performance and key distribution are improved without any sacrifice in security.