C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Riya Patel(3)
Dashrath Hapani(2)
Saurav Kumar(2)
Sardar Mudassar Ali Khan (1)
Manoj Kalla(1)
Priyanshu Agnihotri(1)
Vikas Hooda(1)
Kamlesh Kumar(1)
Nagaraj M(1)
Ajay Kumar(1)
Keyur (1)
Subham Ray(1)
Anupam Maiti(1)
Jamil Ahmed(1)
Prasad Pathak(1)
Akshay Teotia(1)
Vijai Anand Ramalingam(1)
Niharika Gupta(1)
Baibhav Kumar(1)
Rajesh Gami(1)
Aarav Patel(1)
Kripanshu Kumar(1)
Kanchana Jayathilake(1)
Mahesh Chand(1)
Vikas Gupta(1)
Shenbagapandiyan P(1)
Vinay Ayinapurapu(1)
Ramasagar Pulidindi(1)
Lalit Kumar(1)
Sourabh Somani(1)
Vulpes (1)
Resources
No resource found
Mutual TLS (mTLS) Authentication for Secure APIs
Jun 03, 2026.
Learn Mutual TLS (mTLS) authentication for secure APIs. Understand how mTLS works, its benefits, use cases, and best practices for API security.
What Is HTTPS TLS Handshake and How Does It Secure Web Communication?
Mar 17, 2026.
Learn how the HTTPS TLS handshake secures web communication! Understand encryption, authentication, and data integrity for a safer online experience.
Complete End-to-End Guide: HTTPS, HSTS, and TLS in ASP.NET Core
Sep 04, 2025.
Comprehensive guide to securing ASP.NET Core applications with HTTPS, HSTS, and TLS. Learn step-by-step how to enforce encrypted communication, prevent downgrade attacks, and configure secure protocols from development to production. Includes TLS configuration in Kestrel, secure cookies, production certificate management, and CI/CD deployment considerations.
Overview of TLS with .NET Framework
Jun 09, 2025.
Learn TLS basics, its advantages, .NET framework compatibility, how to enable or set default TLS versions in C#, and detect active TLS versions on websites using practical C# code examples.
Dynamically Support TLS Versions in .NET
Mar 10, 2025.
Learn how to dynamically support different TLS versions in .NET applications to ensure secure communication. This guide covers configuring TLS settings, enabling version negotiation, and maintaining compatibility across .NET frameworks.
Understanding TLS and HTTPS in .NET
Mar 10, 2025.
TLS (Transport Layer Security) is a cryptographic protocol securing data transmission over networks, ensuring encryption, authentication, and integrity. HTTPS integrates TLS with HTTP, providing secure web communications. In .NET applications, enforcing HTTPS and supporting TLS 1.2+ enhances security.
Understanding TLS and SSL: Securing Your Digital Communications
Jul 24, 2024.
TLS (Transport Layer Security) and its predecessor SSL (Secure Sockets Layer) are cryptographic protocols designed to secure data transmitted over the internet by encrypting and authenticating the communication channel.
How To Configure SMTP O365 Migration Using TLS 1.2 For SQL Database Mail
Jun 07, 2022.
This article will explain to you how exactly you need to configure TLS 1.2 as a default protocol and setup SMTP O365 migration using SQL 2012 Database mail and above versions for Windows Server 2012 and above Common SMTP exceptions we usually faced : The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 2. Exception Message: Cannot send mails to mail server. (Failure sending mail.). )Just follow the steps -
Configure TLS 1.2 On BizTalk Server
May 01, 2018.
TLS is a successor to Secure Sockets Layer protocol or SSL. TLS provides secure communications on the Internet for such things as e-mail, Internet faxing, and other data transfers. Client-server applications use the TLS protocol to communicate across a network in a way designed to prevent eavesdropping and tampering.
mTLS (Mutual TLS)
Jan 07, 2026.
Secure your APIs & microservices with mTLS! Learn how mutual TLS provides strong authentication, encryption, & zero-trust security using digital certificates.
Securing Microservices Communication with mTLS Explained
Jan 02, 2026.
Learn how mTLS secures microservices communication. Understand what mutual TLS is, how it works, and why it is important for secure cloud and microservices architectures.
The Difference Between SSL and TLS
Jun 05, 2024.
SSL (Secure Sockets Layer) and TLS (Transport Layer Security) are encryption protocols securing data transmission over networks. TLS succeeded SSL, offering improved security and compatibility. Both facilitate secure communication between clients and servers, ensuring the confidentiality and integrity of data exchanged, crucial for online transactions and data privacy.
SSL/TLS Termination in API Gateway Pattern
Nov 22, 2023.
This article would be beneficial for readers seeking to understand the importance of SSL/TLS termination in enhancing API security and performance. It's great that you not only discuss the benefits but also address potential challenges and provide practical recommendations for best practices.
What is MTA-STS and TLS-RPT
Aug 07, 2023.
MTA-STS, short for Mail Transfer Agent - Strict Transport Security, is an email security protocol designed to enforce secure encrypted connections between email servers. It aims to prevent man-in-the-middle attacks and ensure that email communication occurs over secure channels, thereby protecting the confidentiality and integrity of emails in transit.
Web Security Vulnerabilities On SSL/TLS Protocols And Set-Cookie Attributes
Jul 22, 2021.
In this article, you will learn about Web Security Vulnerabilities On SSL/TLS Protocols And Set-Cookie Attributes.
Creating A Certificate Using OpenSSL On Windows For SSL/TLS Communication
Jul 02, 2020.
This article describes a step-by-step procedure from scratch on how to generate a server-side X509 certificate on Windows 7 for SSL/TLS TCP communication using OpenSSL.
Fix Visual Studio Load Test Error: Request Failed - SSL/TLS Issue
Dec 04, 2019.
In this article you will learn about the Visual Studio load test error - request failed - the request was aborted - could not create ssl/tls secure channel.
Working With Thread Local Storage (TLS) in C#
Mar 31, 2012.
Thread Local Storage is used to store thread-specific pieces of data.
Could Not Establish Trust Relationship For The SSL/TLS Secure Channel
Jul 29, 2011.
In this article we will be seeing how to resolve the following issue “The underlying connection was closed. Could not establish trust relationship for the SSL/TLS secure channel”.
What Is Post-Quantum Cryptography and Do I Need to Update SSL?
Mar 30, 2026.
Explore post-quantum cryptography (PQC) and its impact on SSL/TLS. Learn how quantum computers threaten current encryption and what steps to take for future-proof security.
How Do Developers Secure Communication Between Microservices?
Mar 11, 2026.
Secure microservice communication is vital! Learn to protect data with TLS, mTLS, API gateways, service meshes, authentication, & network segmentation. #microservices
How to Enable HTTPS Redirection in ASP.NET Core?
Feb 26, 2026.
Secure your ASP.NET Core apps! This guide details enabling HTTPS redirection, configuring certificates, handling reverse proxies, and implementing HSTS for robust security.
Redis Security Best Practices for Production Systems
Jan 07, 2026.
A practical, human-written guide to securing Redis in production systems. Learn the most common Redis security mistakes, real-world Redis attack scenarios, and how experienced teams lock Redis down safely.
Fortifying API Communication: Implementing End-to-End Encryption and HTTPS in ASP.NET Core
Nov 10, 2025.
Harden your ASP.NET Core APIs! Learn to implement end-to-end encryption with HTTPS, TLS, and AES. Protect data in transit and at rest for robust security.
How to Secure a Website?
Sep 08, 2025.
Protect your website from cyber threats with our comprehensive guide to website security. Learn essential practices, from SSL/TLS encryption and WAF implementation to secure coding, access control, and robust backup strategies. Safeguard sensitive data, ensure compliance, improve SEO, and build user trust. Discover how to defend against DDoS attacks, SQL injection, and malware, creating a secure online presence.
Difference Between Self-Signed and CA-Signed Certificates
Aug 13, 2025.
In the world of digital security, SSL/TLS certificates play a crucial role in ensuring encrypted communication and verifying identity over networks, especially the internet. When it comes to obtaining a certificate, two primary options: self-signed certificates and Certificate Authority (CA)-signed certificates.
Understanding How Exchange Server Handles OWA, Outlook Profiles, and Mobile Access
Jul 29, 2025.
Understanding how Exchange handles different types of client connections helps tremendously with troubleshooting. Whether it’s an Outlook profile not loading or a phone not syncing, breaking down where it fails (DNS, TLS, Autodiscover, auth, or routing) will guide you straight to the issue.
How do I implement encryption for PHI at rest and in transit?
Jul 12, 2025.
Learn how to encrypt Protected Health Information (PHI) using AES-256, HSM-backed key management, TLS 1.3 configuration, and hardware security modules. Practical guidance for developers.
Encryption for Data Security: Creating Digital Certificates
May 06, 2024.
Encryption secures data by converting it into unreadable ciphertext using algorithms and keys, preventing unauthorized access. SSL/TLS certificates enable secure communication between websites and users, validating identity and encrypting data transmission
How Secure Sockets Layer Works?
Apr 08, 2024.
SSL (Secure Sockets Layer) and TLS (Transport Layer Security) protocols establish encrypted connections between clients and servers, ensuring secure online communication by encrypting data and verifying server identities.
Git Clone: Self Signed Certificate in Certificate Chain
Jan 04, 2024.
When cloning a Git repository over HTTPS, you may encounter the error "self-signed certificate in a certificate chain." This occurs due to an untrusted SSL certificate.
What's New In ASP.NET Core 7.0
Dec 22, 2022.
In this aricle, you will learn what's new in ASP.NET Core 7.0.
How To Enable HTTPS In ASP.NET Web API
Nov 29, 2018.
In this article, you will see How we can enable https in ASP.Net Web API. We will start by discussing all the steps required to enable https in asp.net web API. And then we will discuss all the steps in details. Also, you will see how we can enable HTTPS support for a development server.
How To Enable HTTPS On Your Website For Free
Mar 20, 2018.
Today, a website security is one of the top priorities for developers and HTTPS is the firs step. This step by step walk-through tutorial teaches how to implement the SSL on a Website for free in 10 minutes.
Thread- Local Storage of Data in .NET
Nov 30, 2010.
Suppose you're writing a multi-threaded application and you want each thread to have its own copy of some data. You also want this data to persist throughout the lifetime of the thread.