Also known as: encipherment
Encryption transforms plaintext into ciphertext using a key, so that only holders of the matching key can recover the original message.1 It is the practical means by which cryptography delivers confidentiality, performed by a cipher and reversed by decryption.
How it works
Encryption applies a cipher parameterized by a secret key. In symmetric encryption the same key encrypts and decrypts; in asymmetric (public-key) encryption a public key encrypts and a private key decrypts. Either way, the defining property is that confidentiality depends on the key, not on hiding the algorithm — the essence of Kerckhoffs’s principle.
This is what separates encryption from look-alikes:
- Obfuscation rearranges or hides data with no secret key, so anyone who learns the method can reverse it.
- Scrambling/whitening applies a fixed, public sequence to balance a signal, not to keep it secret.
Only encryption gives security that survives full public knowledge of the method.
Relevance to SDR
For a scanner, encryption is the hard wall. When DMR Enhanced Privacy (RC4) or P25 DES-OFB / AES-256 voice encryption is in use, GopherTrunk can detect the encrypted call, identify the talkgroup, and follow it across the trunked system, but it cannot recover audio without the key — and it does not attempt to. The contrast matters because much of what crosses the air only looks protected: a scrambling sequence is reversible, a CRC is for integrity, and the Motorola talker-alias scheme analyzed in issue #773 is keyless obfuscation rather than encryption. Distinguishing real encryption from the rest tells you immediately what is decodable.
Sources
-
Encryption — Wikipedia, for the definition of transforming plaintext to ciphertext under a key and its inverse, decryption. ↩