RTUComputer ScienceYr 2023 · Sem 52023

Q5Cyber Security Management

Question

4 marks

Explain the concept of Network Security protocols (SSL/TLS, IPSec).

Answer

A detailed exploration of essential Network Security Protocols, strictly contrasting the Application-layer encryption of SSL/TLS with the Network-layer IP encapsulation and tunneling of IPSec.

In modern cyber architecture, raw data traversing the global Internet is catastrophically vulnerable to interception and malicious modification by threat actors. To completely secure this transit, engineers rely on highly complex, standardized cryptographic network protocols. The two absolute most critical protocols deployed globally are SSL/TLS (operating at the Application/Transport boundary) and IPSec (operating at the Network layer).

1. SSL / TLS (Secure Sockets Layer / Transport Layer Security)

TLS (the modern, aggressively hardened successor to SSL) is the absolute foundation of secure web browsing (HTTPS). It is engineered to mathematically encrypt the data stream strictly between a specific client application (a web browser) and a specific server application.

  • The Cryptographic Handshake: When a connection initiates, the client and server execute a complex mathematical negotiation. The server presents its X.509 Digital Certificate (containing its Public Key). The client aggressively validates the Certificate Authority's signature.
  • Key Exchange: Using Asymmetric Cryptography (RSA or Elliptic Curve), the client and server securely negotiate and mathematically generate a shared, temporary "Symmetric Session Key".
  • Bulk Encryption: Once the handshake completes, all subsequent data (passwords, credit cards) is violently encrypted using ultra-fast Symmetric algorithms (like AES-256) utilizing the negotiated session key, guaranteeing absolute Confidentiality and Integrity.

2. IPSec (Internet Protocol Security)

While TLS protects a specific application, IPSec is a much lower-level, highly aggressive protocol operating at OSI Layer 3 (Network Layer). It is specifically engineered to mathematically encrypt entire IP packets, making it the foundational architecture for enterprise Virtual Private Networks (VPNs). Because it operates at Layer 3, it is completely invisible and transparent to all applications running above it.

  • Authentication Header (AH): This protocol physically appends a cryptographic hash (MAC) to the IP packet. It mathematically guarantees the absolute Integrity and Authenticity of the packet (proving it was not altered), but it strictly does NOT encrypt the data payload.
  • Encapsulating Security Payload (ESP): This is the heavy armor. ESP mathematically encrypts the entire data payload (Confidentiality) and optionally encrypts the original IP header (Tunnel Mode), violently encapsulating the entire original packet inside a completely new, secure IP packet to hide the true source and destination from internet routers.
Back to Paper