27. Symmetric Cryptography

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/35

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:16 PM on 7/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

36 Terms

1
New cards

symmetric

Is DES a symmetric or asymmetric encryption algorithm?

2
New cards

block

Is DES a block or stream cipher?

3
New cards

 64 bit blocks

What number bit block does DES encrypt?

4
New cards

56 bit key

What bit key does DES use?

5
New cards

True

True or False?

DES is now considered insecure.

6
New cards

symmetric

Triple DES is a symmetric or asymmetric encryption algorithm?

7
New cards

64-bit

Triple DES is a block cipher that works on what number bit blocks?

8
New cards

True

True or False?

When Triple DES is used with three keys, it has an effective key length of 112 bits, but weaknesses in the algorithm mean that it's no longer recommended for use.

9
New cards

Triple DES or 3DES

Three rounds of DES encryption produced much stronger security than existed with standard DES. This approach is known as what?

10
New cards

True


True or False?

Why Triple DES? Why not just use DES twice? The answer is that using the algorithm twice is subject to an attack known as the meet-in-the-middle attack that makes it no more secure than the standard DES algorithm.

11
New cards

symmetric

Is advanced encryption standard, or AES a symmetric or asymmetric encryption algorithm?

12
New cards

block

Is advanced encryption standard, or AES a block or stream cipher?

13
New cards

128 bit block

AES works on what bit blocks?

14
New cards
  1. 128 bit key

  2. 192 bit key

  3. 256 bit key

AES allows what three different key lengths that are considered secure?

15
New cards

symmetric

Is Blowfish a symmetric or asymmetric encryption algorithm?

16
New cards

block

Is Blowfish a block or stream cipher?

17
New cards

Blowfish

What symmetric encryption algorithm allows you to use any key length you'd like as long as it falls in the range of 32 to 448 bits?

18
New cards

True

True or False?

Blowfish is no longer considered secure because there are known attacks against some weak encryption keys

19
New cards

symmetric

Is TwoFish a symmetric or asymmetric encryption algorithm?

20
New cards

128 bits

TwoFish works on blocks of how many bits?

21
New cards
  1. 128 bits

  2. 192 bits

  3. 256 bits

TwoFish allows what three different key lengths?

22
New cards

True

True or False?

TwoFish is still considered secure for use today.

23
New cards

stream

Is RC4 a block or stream cipher?

24
New cards

symmetric

is RC4 a symmetric or asymmetric encryption algorithm?

25
New cards

between 40 and 2048 bits

RC4 allows a variable length key of what?

26
New cards

False, it is no longer considered secure for use on modern networks.

True or False?

RC4 is still considered secure for use on modern networks.

27
New cards

network communications

RC4 was widely used to encrypt what kinds of communications?

28
New cards

Electronic code book, or ECB mode

What cipher mode?

Simplest & least secure mode.

Processes 64bit blocks, encrypts block with the chosen key.

If same block encountered multiple times, same encrypted block is produced, making it easy to break.

29
New cards

Cipher block chaining, or CBC mode

What is the cipher mode?

Each block of unencrypted text is XORed with the block of ciphertext immediately preceding.

Decryption process simply decrypts ciphertext and reverses the XOR operation.

30
New cards

Cipher Feedback (CFB)

What is the cipher mode?

Is the streaming version of Cipher block chaining, or CBC mode.

Works on data in real time, using memory buffers of same block size.

When buffer is full, data is encrypted and transmitted.

Uses chaining, so errors propagate.

31
New cards

Output Feedback (OFB).

What is the cipher mode?

Operates similar to Cipher Feedback (CFB), but XORs the plain text with a seed value.

No chaining function, so errors do not propagate.

32
New cards

Counter (CTR)

What is the cipher mode?

Uses an incrementing counter instead of a seed.

Errors do not propagate.

33
New cards

Galois counter mode, or GCM

What is the cipher mode?

A variant of counter mode that adds authentication to the cipher process, supplementing the confidentiality capabilities of electronic code book, cipher block chaining, and traditional counter mode. 

34
New cards

counter mode

What is a functionality that allows a block cipher to act more like a stream cipher?

35
New cards

Steganography

What is the process of hiding information within another file so that it is not visible to the naked eye? It's the art of hiding information in plain sight, and it's a particularly valuable communication secrecy tool for those who do not want others to know that they are even communicating in the first place. 

36
New cards

What encryption mode feeds the previous encrypted block into the encryption of the next block?