0
0
Computer Networksknowledge~10 mins

Symmetric encryption (AES, DES) in Computer Networks - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the sentence to define symmetric encryption.

Computer Networks
Symmetric encryption uses the same [1] for both encryption and decryption.
Drag options to blanks, or click blank then click option'
Akey
Balgorithm
Chash
Dprotocol
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing the key with the encryption algorithm.
Thinking the protocol is the secret used for encryption.
2fill in blank
medium

Complete the sentence to identify a popular symmetric encryption algorithm.

Computer Networks
One widely used symmetric encryption algorithm is [1].
Drag options to blanks, or click blank then click option'
ARSA
BTLS
CSHA-256
DAES
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing RSA, which is asymmetric encryption.
Confusing encryption algorithms with hashing functions like SHA-256.
3fill in blank
hard

Fix the error in the statement about DES encryption.

Computer Networks
DES uses a [1]-bit key for encryption.
Drag options to blanks, or click blank then click option'
A128
B56
C64
D256
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing 64 bits, which is the block size, not the key size.
Thinking DES uses a 128-bit or 256-bit key like AES.
4fill in blank
hard

Fill both blanks to complete the description of symmetric encryption.

Computer Networks
Symmetric encryption is generally [1] than asymmetric encryption but requires secure [2] distribution.
Drag options to blanks, or click blank then click option'
Afaster
Bkey
Cslower
Dalgorithm
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping the words 'faster' and 'slower'.
Confusing 'key' with 'algorithm' for what needs secure distribution.
5fill in blank
hard

Fill both blanks to complete the dictionary comprehension describing key lengths.

Computer Networks
key_lengths = {: {BLANK_2}} for {{BLANK_2}} in ['AES', 'DES']
Drag options to blanks, or click blank then click option'
A{
B'AES'
C'DES'
D}
Attempts:
3 left
💡 Hint
Common Mistakes
Using closing brace '}' at the start.
Confusing the algorithm names or missing braces.