---
title: "How do you provide secured communication in ASP.NET?"  
description: "How do you provide secured communication in ASP.NET?"  
author: "Pushpendra Singh"  
published: 2010-10-25  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/119/how-do-you-provide-secured-communication-in-asp-dot-net  
category: "asp.net"  
tags: ["asp.net"]  
reading_time: 1 minute  

---

# How do you provide secured communication in ASP.NET?

ASP.NET provides secured communication using Secure Sockets Layer. The application to use SSL need to have an encryption key called a server certificate configured in IIS. When a user requests a secured page, the server generates an encryption key for the user’s session. The encrypted response is then sent along with encryption key generated. In the client side, the response is then decrypted using a same encryption key.

## Answers

### Answer by Pushpendra Singh

ASP.NET provides secured communication using Secure Sockets Layer. The application to use SSL need to have an encryption key called a server certificate configured in IIS. When a user requests a secured page, the server generates an encryption key for the user’s session. The encrypted response is then sent along with encryption key generated. In the client side, the response is then decrypted using a same encryption key.


---

Original Source: https://www.mindstick.com/interview/119/how-do-you-provide-secured-communication-in-asp-dot-net

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
