49
Chapter 5 Electronic mail security

Chapter 5

Embed Size (px)

DESCRIPTION

Chapter 5. Electronic mail security. Outline. Pretty good privacy S/MIME Recommended web sites. Pretty Good Privacy. Philip R. Zimmerman is the creator of PGP. PGP provides a confidentiality and authentication service that can be used for electronic mail and file storage applications. - PowerPoint PPT Presentation

Citation preview

Page 1: Chapter 5

Chapter 5

Electronic mail security

Page 2: Chapter 5

Outline

Pretty good privacy S/MIME Recommended web sites

Page 3: Chapter 5

Pretty Good Privacy

Philip R. Zimmerman is the creator of PGP. PGP provides a confidentiality and

authentication service that can be used for electronic mail and file storage applications.

PGP source : http://www.pgp.com/developers/sourcecode/

Page 4: Chapter 5

Why Is PGP Popular?

It is availiable free on a variety of platforms. Based on well known algorithms. Wide range of applicability Not developed or controlled by governmental

or standards organizations

Page 5: Chapter 5

Operational Description

Consist of five services: Authentication Confidentiality Compression E-mail compatibility Segmentation

Page 6: Chapter 5

PGP Operation – Authentication

1. sender creates message2. use SHA-1 to generate 160-bit hash of message 3. signed hash with RSA using sender's private key,

and is attached to message4. receiver uses RSA with sender's public key to

decrypt and recover hash code5. receiver verifies received message using hash of it

and compares with decrypted hash code

Page 7: Chapter 5

PGP Operation – Confidentiality

1. sender generates message and 128-bit random number as session key for it

2. encrypt message using CAST-128 / IDEA / 3DES in CBC mode with session key

3. session key encrypted using RSA with recipient's public key, & attached to msg

4. receiver uses RSA with private key to decrypt and recover session key

5. session key is used to decrypt message

Page 8: Chapter 5

PGP Operation – Confidentiality & Authentication

can use both services on same message create signature & attach to message encrypt both message & signature attach RSA/ElGamal encrypted session key

Page 9: Chapter 5

PGP Operation – Compression

by default PGP compresses message after signing but before encrypting so can store uncompressed message & signature

for later verification & because compression is non deterministic

uses ZIP compression algorithm

Page 10: Chapter 5

PGP Operation – Email Compatibility

when using PGP will have binary data to send (encrypted message etc)

however email was designed only for text hence PGP must encode raw binary data into

printable ASCII characters uses radix-64 algorithm

maps 3 bytes to 4 printable chars also appends a CRC

PGP also segments messages if too big

Page 11: Chapter 5

E-mail Compatibility The scheme used is radix-64 conversion. The use of radix-64 expands the message by

33%.

Page 12: Chapter 5
Page 13: Chapter 5

PGP Operation – Summary

Page 14: Chapter 5

Segmentation and Reassembly

Often restricted to a maximum message length of 50,000 octets.

Longer messages must be broken up into segments.

PGP automatically subdivides a message that is to large.

The receiver strip of all e-mail headers and reassemble the block.

Page 15: Chapter 5

Summary of PGP Services Function Algorithm Used Digital Signature DSS/ SHA or

RSA/ SHA Message Encryption

CAST or I DEA or three-key triple DES with Diffi e-Hellman or RSA

Compression ZI P E-mail Compatibility

Radix-64 conversion

Segmentation -

Page 16: Chapter 5

PGP Keys

Make use of four type of keys: One-time session symmetric key Public key Private key Passphrase-based symmetric key

Page 17: Chapter 5

PGP Session Keys

need a session key for each message Only for encrypting and decrypting purpose of varying sizes: 56-bit DES, 128-bit CAST or

IDEA, 168-bit Triple-DES generated using ANSI X12.17 mode uses random inputs taken from previous uses

and from keystroke timing of user

Page 18: Chapter 5

PGP Public & Private Keys

since many public/private keys may be in use, need to identify which is actually used to encrypt session key in a message could send full public-key with every message but this is inefficient

rather use a key identifier based on key is least significant 64-bits of the key will very likely be unique

also use key ID in signatures

Page 19: Chapter 5

Format of PGP Message

Page 20: Chapter 5

PGP Key Rings

each PGP user has a pair of keyrings: public-key ring contains all the public-keys of other PGP

users known to this user, indexed by key ID private-key ring contains the public/private key pair(s) for

this user, indexed by key ID & encrypted keyed from a hashed passphrase

security of private keys thus depends on the pass-phrase security

Page 21: Chapter 5
Page 22: Chapter 5
Page 23: Chapter 5
Page 24: Chapter 5

PGP Key Management

rather than relying on certificate authorities in PGP every user is own CA

can sign keys for users they know directly

forms a “web of trust” trust keys have signed can trust keys others have signed if have a chain of

signatures to them

key ring includes trust indicators users can also revoke their keys

Page 25: Chapter 5

The Use of Trust

Key legitimacy field Signature trust field Owner trust field

See Table 15.2 See Table 15.2 (W. Stallings)(W. Stallings)

Page 26: Chapter 5
Page 27: Chapter 5

Revoking Public Keys

The owner issue a key revocation certificate. Normal signature certificate with a revote

indicator. Corresponding private key is used to sign the

certificate.

Page 28: Chapter 5

S/MIME

Secure/Multipurpose Internet Mail Extension S/MIME will probably emerge as the industry

standard. PGP for personal e-mail security

Page 29: Chapter 5

Simple Mail Transfer Protocol (SMTP, RFC 822)

SMTP Limitations - Can not transmit, or has a problem with:

executable files, or other binary files (jpeg image)

“national language” characters (non-ASCII)

messages over a certain size

ASCII to EBCDIC translation problems

lines longer than a certain length (72 to 254 characters)

Page 30: Chapter 5

Header fields in MIME

MIME-Version: Must be “1.0” -> RFC 2045, RFC 2046

Content-Type: More types being added by developers (application/word)

Content-Transfer-Encoding: How message has been encoded (radix-64)

Content-ID: Unique identifying character string.

Content Description: Needed when content is not readable text (e.g.,mpeg)

Page 31: Chapter 5
Page 32: Chapter 5
Page 33: Chapter 5

S/MIME (Secure/Multipurpose Internet Mail Extensions)

security enhancement to MIME email original Internet RFC822 email was text only MIME provided support for varying content types

and multi-part messages with encoding of binary data to textual form S/MIME added security enhancements

have S/MIME support in various modern mail agents: MS Outlook, Netscape etc

Page 34: Chapter 5

S/MIME Functions

Enveloped Data: Encrypted content and encrypted session keys for recipients.

Signed Data: Message Digest encrypted with private key of “signer.”

Clear-Signed Data: Signed but not encrypted.

Signed and Enveloped Data: Various orderings for encrypting and signing.

Page 35: Chapter 5

Algorithms Used

Message Digesting: SHA-1 and MDS

Digital Signatures: DSS

Secret-Key Encryption: Triple-DES, RC2/40 (exportable)

Public-Private Key Encryption: RSA with key sizes of 512 and 1024 bits, and Diffie-Hellman (for session keys).

Page 36: Chapter 5

User Agent Role

S/MIME uses Public-Key Certificates - X.509 version 3 signed by Certification Authority

Functions:

Key Generation - Diffie-Hellman, DSS, and RSA key-pairs.

Registration - Public keys must be registered with X.509 CA.

Certificate Storage - Local (as in browser application) for different services.

Signed and Enveloped Data - Various orderings for encrypting and signing.

Page 37: Chapter 5

User Agent Role

Example: Verisign (www.verisign.com)

Class-1: Buyer’s email address confirmed by emailing vital info.

Class-2: Postal address is confirmed as well, and data checked against directories.

Class-3: Buyer must appear in person, or send notarized documents.

Page 38: Chapter 5

Certificate Authorities

Verisign issues several types of Digital IDs increasing levels of checks & hence trust

Class Identity Checks Usage

1 name/email check web browsing/email

2 + enroll/addr check email, subs, s/w validate

3 + ID documents e-banking/service access

Page 39: Chapter 5

E-mail Security Risks

Page 40: Chapter 5

E-mail Security Risks: Malware

Page 41: Chapter 5

E-mail Security Risks: Malware

Page 42: Chapter 5

E-mail Security Risks: E-mail spoofing

Page 43: Chapter 5

E-mail Attachment Security

Page 44: Chapter 5
Page 45: Chapter 5

E-mail Spamming

Page 46: Chapter 5

Protecting E-mail Spamming

Page 47: Chapter 5

E-mail Bombing and Chain Letter

Page 48: Chapter 5

Defend against E-mail security

Page 49: Chapter 5

Recommended Web Sites

PGP home page: www.pgp.com MIT distribution site for PGP S/MIME Charter S/MIME Central: RSA Inc.’s Web Site