22
Wireless & Network Security 1 Kemal Akkaya Department of Computer Science Southern Illinois University Carbondale CS 591 – Wireless & Network Security Lecture 5: Security Basics-1 Dr. Kemal Akkaya E-mail: [email protected] Slides are courtesy of Kenny Fong

Dr. Kemal Akkaya E-mail: [email protected]

  • Upload
    anila

  • View
    39

  • Download
    2

Embed Size (px)

DESCRIPTION

Department of Computer Science Southern Illinois University Carbondale CS 591 – Wireless & Network Security Lecture 5: Security Basics-1. Slides are courtesy of Kenny Fong. Dr. Kemal Akkaya E-mail: [email protected]. Cryptography. - PowerPoint PPT Presentation

Citation preview

Page 1: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 1 Kemal Akkaya

Department of Computer ScienceSouthern Illinois University Carbondale

CS 591 – Wireless & Network Security

Lecture 5: Security Basics-1

Dr. Kemal AkkayaE-mail: [email protected]

Slides are courtesy of Kenny Fong

Page 2: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 2 Kemal Akkaya

CryptographyCryptography is the study of mathematical

techniques in the provision of information security services. It is the strongest and most widely used tool for defending against many kinds of security threats.

Goals of cryptographyConfidentiality: keeping information secret from all but

those who are authorized to see it Integrity: ensuring information has not been altered by

unauthorized or unknown meansAuthentication: corroborating the source of information or

the identity of an entityNon-repudiation: preventing the denial of previous

commitments or actions

Page 3: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 3 Kemal Akkaya

Symmetric-Key Encryption

A symmetric-key encryption scheme, or a cipher, consists of:a secret key K shared by the sender and the receiver,an encryption algorithm EK that, with a message M

(called the plaintext) and the secret key K as input, produces the encrypted message C = EK(M) as output (called the ciphertext), and

a decryption algorithm DK that, with a ciphertext C and the secret key K as input, outputs the original message M = DK(C); i.e., given any key K,

DK(EK(M)) = M

for all messages M.

Page 4: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 4 Kemal Akkaya

Symmetric-Key Encryption

Page 5: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 5 Kemal Akkaya

CryptanalysisCryptanalysis is the science of recovering the

plaintext or deducing the key without access to the key.

A brute-force attack, also called exhaustive key search, attempts to decrypt a given ciphertext message with every possible key until the resulting plaintext is meaningful (identified by means of frequency analysis).

In general, a brute-force attack on a cipher with an n-bit key requires at most 2n trials. Therefore, the longer the key length, the more secure the cipher.

Page 6: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 6 Kemal Akkaya

Caesar Cipher The Caesar cipher (also called the shift cipher) replaces

each letter of a message with another letter a fixed number of places after it in the alphabet (the alphabet is wrapped around).

Mathematical description Assign a numerical equivalent to each letter: A – 0, B – 1, C – 2, …,

Y – 24, Z – 25 Encrypt: for each plaintext letter Mi, the ciphertext letter is

Ci = EK(Mi) = (Mi + K) mod 26

where the secret key K is the shift amount (which is a number between 1 and 25)

Decrypt: Mi = DK(Ci) = (Ci – K) mod 26

Example: M = KENNYFONG, C = NHQQBIRQJ, K = 3 Cryptanalysis: brute-force attack (there are only 25

possible keys)

Page 7: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 7 Kemal Akkaya

Vigenère Cipher

The Vigenère cipher, invented by Giovan Batista Belaso in 1553 (but misattributed to Blaise de Vigenère in the 19th century), works as follows: Let K = K0 K1 … Kd-1, where d is the number of

letters in K. The key K is usually a word with 5 – 8 letters.

Encrypt: Ci = (Mi + Ki mod d) mod 26 Decrypt: Mi = (Ci – Ki mod d) mod 26

Example: K = FALSEPlaintext KENNYISTHEGREATESTMANINTHEWORLD

Key FALSEFALSEFALSEFALSEFALSEFALSEF

Ciphertext PEYFCNSEZILRPSXJSEEESIYLLJWZJPI

Page 8: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 8 Kemal Akkaya

Block Ciphers

A block cipher encrypts the plaintext message one block at a time (every block has the same fixed size).

Most contemporary ciphers are block ciphers: Data Encryption Standard (DES)

Key length: 56 bits, block length: 64 bits

Advanced Encryption Standard (AES) Key length: 128/192/256 bits, block length: 128 bits

Triple DES International Data Encryption Algorithm (IDEA) Blowfish Ron’s Code 5 (RC5)

Page 9: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 9 Kemal Akkaya

Block Ciphers Block ciphers generally apply the techniques of

substitution and permutation to complicate the statistical relationship between the ciphertext and the plaintext, thereby thwarting cryptanalysis based on statistical analysis.

A mode of operation specifies how a block cipher with a fixed block size (e.g., 128 bits for AES) can be extended to process messages of arbitrary length. Most of the modes of operation partition a message P in the most straightforward way: P = P1 P2 … PN, where Pi is an m-bit block for all 1 ≤ i ≤ N and m is the block size of the block cipher used, padding the last block PN if necessary.

5 modes: ECB, CBC, CFB, OFB, CTR

Page 10: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 10 Kemal Akkaya

Electronic Codebook Mode (ECB) Encrypt: The ciphertext to be sent is <C1, C2, …, CN>, where Ci =

EK(Pi) for all 1 ≤ i ≤ N.

Decrypt: Pi = DK(Ci) for all 1 ≤ i ≤ N.

Though ECB is simple, it suffers the problem that if the same plaintext block appears more than once in the message, ECB always produces the same ciphertext block, allowing an adversary to gain some knowledge by observing repetitions in lengthy messages.

Page 11: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 11 Kemal Akkaya

Cipher Block Chaining Mode (CBC) Precomputation: an m-bit initialization vector IV is randomly

selected, where m is the block size. Encrypt: The ciphertext to be sent is <IV, C1, C2, …, CN>, where C0

= IV and Ci = EK(Ci-1 Pi) for all 1 ≤ i ≤ N.

Decrypt: Pi = Ci-1 DK(Ci) for all 1 ≤ i ≤ N, where C0 = IV.

The same plaintext block may not be encrypted to the same ciphertext block in CBC, because the ith ciphertext block depends on the ith plaintext block and all the previous plaintext blocks. However, unlike ECB, CBC encryption is not parallelizable (but CBC decryption is parallelizable).

Page 12: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 12 Kemal Akkaya

Cipher Feedback (CFB)

Page 13: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 13 Kemal Akkaya

Counter (CTR)

Page 14: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 14 Kemal Akkaya

Data Encryption Standard (DES)

Adopted in 1977 by NIST

Block cipher with 64 bits of blocks

56 bits key length 16 Rounds

Page 15: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 15 Kemal Akkaya

Triple DES (3DES)

first used in financial applicationsin DES FIPS PUB 46-3 standard of 1999uses three keys & three DES executions:

C = E(K3, D(K2, E(K1, P)))decryption same with keys reverseduse of decryption in second stage gives

compatibility with original DES userseffective 168-bit key length, slow, secureAES will eventually replace 3DES

Page 16: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 16 Kemal Akkaya

Advanced Encryption Standard

(AES)

Page 17: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 17 Kemal Akkaya

AES Round Structure

Page 18: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 18 Kemal Akkaya

Stream Ciphers Processes input elements continuously

Bit by bit (or byte)

Key input to a pseudorandom bit generator Produces stream of random like numbers Unpredictable without knowing input key

Are faster and use far less code Design considerations:

Encryption sequence should have a large period Keystream approximates random number properties Uses a sufficiently long key (i.e., 128 bits)

RC4 is the most common Others

A5/1, A5/2, FISH, Helix, ISAAC, MUGI, Panama, Phelix, Pike

Page 19: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 19 Kemal Akkaya

Diffie-Hellman Key Exchange

First practical scheme to exchange a secret keyUsed in symmetric ciphers

Proposed by Diffie & Hellman in 1976 note: now know that Williamson (UK CESG) secretly

proposed the concept in 1970

Practical method to exchange a secret keyUsed in a number of commercial productsSecurity relies on difficulty of computing

discrete logarithms

Page 20: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 20 Kemal Akkaya

Diffie-Hellman

Algorithm

Page 21: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 21 Kemal Akkaya

Diffie-Hellman Example

Haveprime number q = 353 primitive root = 3

A and B each compute their public keysA computes YA = 397 mod 353 = 40B computes YB = 3233 mod 353 = 248

Then exchange and compute secret key: for A: K = (YB)XA mod 353 = 24897 mod 353 = 160 for B: K = (YA)XB mod 353 = 40233 mod 353 = 160

Attacker must solve:3a mod 353 = 40 which is hardDesired answer is 97, then compute key as B does

Page 22: Dr. Kemal Akkaya E-mail:  kemal@cs.siu

Wireless & Network Security 22 Kemal Akkaya

Key Exchange Protocols