Complete the code to identify the type of encryption used.
encryption_type = "[1]" # Common symmetric encryption algorithm
AES is a widely used symmetric encryption algorithm. RSA is asymmetric, and SHA256 and MD5 are hashing algorithms.
Complete the sentence to describe the key usage in symmetric encryption.
In symmetric encryption, the same [1] is used for both encryption and decryption.
Symmetric encryption uses the same key for both encrypting and decrypting data, unlike asymmetric encryption which uses a key pair.
Fix the error in the statement about DES encryption key size.
DES uses a [1]-bit key for encryption.
DES uses a 56-bit key for encryption, although the key is often represented as 64 bits including parity bits.
Fill both blanks to complete the description of symmetric encryption modes.
AES can operate in different modes like [1] and [2], which affect how data blocks are encrypted.
CBC (Cipher Block Chaining) and ECB (Electronic Codebook) are common modes of operation for AES symmetric encryption.
Fill all three blanks to complete the dictionary comprehension describing key lengths.
key_lengths = {"AES-128": [1], "AES-192": [2], "AES-256": [3]AES supports key lengths of 128, 192, and 256 bits for different security levels.