Encryption protects surveillance data by scrambling it so that only those with the key can read it — both in transit (video moving from camera to server, server to client) and at rest (footage stored on disk or in the cloud). In transit it typically means TLS or secure RTP; at rest it typically means disk or file encryption such as AES. It is a foundational security measure and, under GDPR Article 32, encryption is named as an example of the technical measures expected to keep personal data secure.
Its job is to make intercepted or stolen data useless. Camera streams cross networks that can be tapped, and recorded footage sits on drives that can be stolen or on cloud storage that can be misconfigured; encryption means that an attacker who captures the traffic or the disk gets ciphertext, not viewable video. It works alongside access control and audit logging — encryption stops outsiders reading the data, RBAC stops insiders exceeding their role, and the audit trail records who did what.
The pitfalls are unencrypted links, weak key management, and a false sense of coverage. Cameras left streaming in the clear, default or absent TLS, and footage stored unencrypted are common real-world gaps — and encryption at rest does nothing if the keys are stored next to the data or never rotated, since whoever has the key has the video. Encryption also protects confidentiality, not integrity or availability, so it is one layer, not the whole of security. Encrypt streams and stored footage, manage keys properly and separately, and combine encryption with access control, patching, and audit logging rather than treating it as a single fix. This is engineering guidance, not legal advice.

