Microsoft Azure Architect Technologies (AZ-300) Practice Exam

Disable ads (and more) with a membership for a one time $2.99 payment

Prepare for the Microsoft Azure Architect Technologies Exam with comprehensive quizzes, flashcards, and simulated questions. Master the skills required to design solutions on Azure and earn your certification efficiently!

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


Which encryption type is specifically employed for TLS in HTTPS?

  1. Symmetric encryption

  2. Asymmetric encryption

  3. Block encryption

  4. Stream encryption

The correct answer is: Asymmetric encryption

The correct choice associated with TLS in HTTPS is asymmetric encryption, which plays a crucial role in establishing secure connections. Asymmetric encryption uses a pair of keys: a public key for encryption and a private key for decryption. This method is particularly advantageous during the initial handshake process in TLS, where the client and server exchange keys securely. During this process, the client uses the server's public key to encrypt a randomly generated session key, which is sent to the server. Only the server, with its corresponding private key, can decrypt this session key. Once both parties have the session key, they can use symmetric encryption for the actual data transfer. This combination allows for secure authentication, establishing a secure channel for communication while maintaining the integrity and confidentiality of data. While block and stream encryption refer to modes of operation for cryptographic algorithms, they are not the primary focus when identifying the unique encryption type employed specifically for the TLS protocol in HTTPS. Symmetric encryption is used afterward for efficient data transmission, but the initial security credentials are established through asymmetric encryption.