전송 중 암호화 (Encryption in Transit)

네트워크를 통해 데이터가 이동하는 동안 데이터를 보호하는 과정.

HTTPS 웹사이트 이용 시 자동으로 적용되며, 개인정보와 금융정보의 안전한 송수신을 보장합니다.

        graph LR
  Center["전송 중 암호화 (Encryption in Transit)"]:::main
  Rel_sockets["sockets"]:::related -.-> Center
  click Rel_sockets "/terms/sockets"
  Rel_validator["validator"]:::related -.-> Center
  click Rel_validator "/terms/validator"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧒 5살도 이해할 수 있게 설명

비밀 편지를 잠금장치가 달린 튼튼한 금고에 넣어 보내는 것과 같습니다. 누군가 배달 중에 금고를 훔쳐도 열쇠가 없어 내용을 볼 수 없습니다.

🤓 Expert Deep Dive

TLS(전송 계층 보안) 프로토콜을 사용하며, 클라이언트와 서버 간의 대칭 암호키를 생성하기 위한 수학적 핸드셰이크가 포함됩니다. MitM 공격 방어가 주요 목적입니다.

❓ 자주 묻는 질문

Is SSL still used for encryption in transit?

No, SSL is deprecated due to vulnerabilities. SSL's modern successor, TLS, is used instead.

Does encryption in transit protect my hard drive?

No, that requires 'Encryption at Rest'. Encryption in transit only protects data while it's moving.

📚 출처