---
title: Encrypted Semantic Super-Resolution Communication
url: https://www.emergentmind.com/topics/encrypted-semantic-super-resolution-enhanced-communication-srec
type: topic
---

# Encrypted Semantic Super-Resolution Communication

Searching arXiv for the specified paper and closely related context papers to ground the article.
Encrypted Semantic Super-Resolution Enhanced Communication (SREC) is a secure semantic communication framework for end-to-end image transmission that combines semantic extraction and deep joint source-channel coding (JSCC), lightweight feature encryption, and receiver-side super-resolution reconstruction. Its stated objective is to protect semantic features from eavesdropping while preserving reconstruction quality under noisy wireless conditions, particularly in an additive Gaussian white noise (AWGN) channel. In SREC, an input image is converted into semantic features, mapped to channel symbols, encrypted by a modulo-256 operation, transmitted, decrypted at the receiver, reconstructed into an image, and then refined by a Residual Dense Network (RDN)-based super-resolution module [2509.04787].

## 1. Conceptual basis and system scope

SREC is situated within semantic communication (SemCom), which is described as a paradigm of deep integration between artificial intelligence and communication technology. In this setting, the transmitted object is not a pixel-faithful source bitstream but a learned semantic representation optimized for downstream reconstruction quality. The motivating problem is that semantic features sent in plaintext over physical channels are vulnerable to interception. SREC addresses that vulnerability by inserting encryption directly into the semantic communication pipeline rather than treating security as a separate post hoc layer [2509.04787].

The framework combines three elements in one image-transmission system:

1. semantic extraction and JSCC transmission,
2. lightweight feature encryption,
3. receiver-side super-resolution reconstruction.

This combination is central to the formulation. The semantic encoder and JSCC modules compress and adapt the image representation to the channel; encryption protects the latent representation during transmission; and super-resolution compensates for quality degradation induced by channel noise, encryption/decryption-related errors, and the reduced fidelity of compressed semantic features.

The paper explicitly targets image transmission. Its empirical claims are framed around PSNR, AWGN robustness, different digital modulation schemes, and eavesdropping resistance under a shared-key assumption. It therefore belongs simultaneously to secure semantic communication, learned JSCC, and learning-based image reconstruction [2509.04787].

## 2. End-to-end architecture and signal flow

The transmitter–channel–receiver chain is defined as a sequence of semantic, communication, cryptographic, and reconstruction stages. The main functional mappings are

\[
y = G_a(x),
\]

\[
s = F_e(y),
\]

\[
s_{\text{enc}} = Enc(s),
\]

\[
s_{\text{trans}} = h * s_{\text{enc}} + n,
\]

\[
s_{\text{dec}} = Dec(s_{\text{trans}}),
\]

\[
\hat{y} = F_d(s_{\text{dec}}),
\]

\[
\hat{x} = G_s(\hat{y}),
\]

\[
\hat{x}_{\text{sr}} = RDN(\hat{x}),
\]

where \(G_a(\cdot)\) is semantic extraction, \(F_e(\cdot)\) is the JSCC encoder, \(Enc(\cdot)\) is the encryption function, \(h\) is the channel coefficient, \(n\) is additive Gaussian noise, \(Dec(\cdot)\) is decryption, \(F_d(\cdot)\) is the JSCC decoder, \(G_s(\cdot)\) is semantic recovery, and \(RDN(\cdot)\) is the super-resolution network [2509.04787].

Operationally, the algorithmic pipeline is described as:

1. input image \(x\),
2. semantic extraction to obtain \(y\),
3. JSCC encoding to produce \(s\),
4. encryption with a pre-shared key to obtain \(s_{\text{enc}}\),
5. transmission over the wireless channel,
6. decryption to obtain \(s_{\text{dec}}\),
7. JSCC decoding to estimate \(\hat{y}\),
8. semantic recovery to reconstruct \(\hat{x}\),
9. super-resolution enhancement to produce \(\hat{x}_{\text{sr}}\).

A central design point is that the system does not transmit raw pixels. Instead, it transmits semantic features encoded into channel symbols by a deep JSCC model. In the reported experiments, SREC adopts NTSCC as the semantic extraction and JSCC backbone. The paper characterizes this as consistent with JSCC-style semantic communication, where transmission is optimized for reconstruction quality rather than exact bitwise source recovery.

## 3. Encryption mechanism, decryption, and security interpretation

The encryption stage is intentionally lightweight. After JSCC encoding, the normalized feature tensor \(s\) is encrypted element-wise with a pseudorandom key tensor of the same size. The key is defined as

\[
KEY = \{KEY(i)\mid i = 1,2,\dots,\text{length},\ KEY(i)\in [0,255]\}.
\]

The encryption rule is

\[
s_{\text{enc}}(i) = \bigl(s(i) + KEY(i) \bmod 256\bigr).
\]

The paper emphasizes that the key is a pseudorandom tensor of type `torch.uint8`, that legitimate parties share it in advance, and that the key is transmitted through a secure channel, while the encrypted features traverse the public wireless channel [2509.04787].

At the receiver, decryption is the modular subtraction counterpart of encryption:

\[
s(i) = \bigl(s_{\text{enc}}(i) - KEY(i) \bmod 256\bigr).
\]

The security rationale is that semantic features are never exposed in plaintext during transmission. Even if an eavesdropper intercepts \(s_{\text{enc}}\), the paper argues that the latent representation cannot be converted into meaningful image semantics without the pre-shared key. The threat model further assumes that an adversary may know all model parameters but does not know the key.

The security claim is explicitly limited. The paper states semantic security intuition based on the difficulty of distinguishing pseudorandom sequences from random sequences in polynomial time, and it references scalable encrypted image coding work for that interpretation. At the same time, it does not provide a formal cryptographic proof beyond that intuition. A common misconception would be to equate the modulo-256 feature masking step with a complete cryptographic analysis; the paper instead presents it as a lightweight, JSCC-compatible protection mechanism under a secure key-distribution assumption [2509.04787].

## 4. Receiver-side super-resolution and the RDN module

The super-resolution component is introduced to mitigate three degradation sources identified by the paper: wireless channel noise, error propagation through encryption and decryption, and the reduced fidelity of compressed semantic features. It is placed after semantic recovery, taking the reconstructed image \(\hat{x}\) and producing the refined output \(\hat{x}_{\text{sr}}\).

The stated intuition is that JSCC decoding and semantic recovery may preserve coarse structure while losing fine detail, especially under low SNR. The super-resolution network supplies a learned image prior that reconstructs plausible high-frequency content and sharpens textures. The paper reports that this is particularly effective at low SNR and, in some low-SNR regimes, can even yield higher PSNR than the model without encryption/decryption because the super-resolution stage compensates for degradation in the latent representation [2509.04787].

The super-resolution module is RDN-based and includes attention and residual mechanisms. Its described stages are:

1. mean subtraction preprocessing,
   \[
   x_0 = sub\_mean(I_{LR}),
   \]
2. UNet-based attention map,
   \[
   weight = UNet(x_0),
   \]
3. initial upsampling feature,
   \[
   f_1 = H_{up1}(x_0),
   \]
4. shallow feature extraction,
   \[
   F_0 = H_{sfe}(x_0),
   \]
5. residual dense blocks,
   \[
   F_d = H_{RDB_d}(F_{d-1}),
   \]
   with internal operations
   \[
   F_{d,c} = \sigma\!\left(W_{d,c} * [F_{d-1}, F_{d,1}, \ldots, F_{d,c-1}]\right),
   \]
   \[
   F_{d,\text{LF}} = W_{d,\text{LFF}} * [F_{d-1}, F_{d,1}, \ldots, F_{d,C}],
   \]
   \[
   F_d = F_{d-1} + F_{d,\text{LF}},
   \]
6. global feature fusion,
   \[
   F_{gf} = H_{GFF}([F_1, F_2, \ldots, F_D]),
   \]
7. attention modulation,
   \[
   F_{mod} = F_{gf} \times weight,
   \]
8. upsampling,
   \[
   F_{up} = H_{up2}(F_{mod}),
   \]
9. global residual learning,
   \[
   F_{res} = F_{up} + f_1,
   \]
10. final convolution and output,
   \[
   F_{final} = W_{final} * F_{res},
   \]
   \[
   I_{SR} = add\_mean(F_{final}).
   \]

Here, \(\sigma\) is ReLU, \(W_{d,c}\) is the convolution weight in the \(c\)-th layer of the \(d\)-th residual dense block, and \(W_{d,\text{LFF}}\) is the local feature fusion \(1\times1\) convolution. In aggregate, the module combines dense feature reuse, residual learning, and attention modulation to improve perceptual reconstruction.

## 5. Experimental configuration and evaluation protocol

The experimental study uses DIV2K for training and validation and 25 images from Urban100 for testing. All images are cropped to \(1024 \times 512\) pixels. The implementation environment is Python 3.11.4 with PyTorch 2.5.1 on an NVIDIA RTX 6000 Ada Generation GPU. The network is trained at 10 dB SNR, and the loss is MSE [2509.04787].

| Component | Reported setting |
|---|---|
| Training/validation dataset | DIV2K |
| Test dataset | 25 images from Urban100 |
| Image size | \(1024 \times 512\) |
| Backbone | NTSCC |
| Training SNR | 10 dB |
| Loss | MSE |
| Framework | Python 3.11.4, PyTorch 2.5.1 |
| Hardware | NVIDIA RTX 6000 Ada Generation GPU |

The hyperparameters are reported as 50 epochs, test every 1000 iterations, batch size 8, learning rate \(5\times10^{-5}\), step decay factor \(\gamma = 0.5\), Adam optimizer, Adam beta \((0.9, 0.999)\), epsilon \(10^{-8}\), weight decay 0, and gradient clipping 0.

The physical channel is modeled as AWGN with complex Gaussian noise,

\[
n \sim \mathcal{C}\mathcal{N}(0,\sigma),
\]

and the modulation schemes evaluated are 16QAM, QPSK, and BPSK. Robustness is assessed by varying SNR. The main quantitative metric is PSNR.

The paper also studies a scaling factor \(\eta\) that maps semantic feature entropy to channel bandwidth cost. Larger \(\eta\) corresponds to lower compression and more bandwidth for high-entropy patches, whereas smaller \(\eta\) corresponds to higher compression and greater detail loss in high-entropy regions. This parameter is used to analyze the interaction between semantic compression and channel conditions.

The reported comparisons include NTSCC, NTSCC with the same encryption method, a baseline scheme without key-based decryption in the eavesdropping discussion, and variants with and without the super-resolution module.

## 6. Quantitative behavior, operating regimes, and stated significance

The reported PSNR–SNR curves and visual reconstructions show a clear modulation-dependent ordering under low SNR. The paper states that 16QAM has the lowest robustness at low SNR, QPSK has intermediate performance, and BPSK has the strongest noise resistance, with rapid PSNR improvement from 0–4 dB. The stated explanation is that low-order modulation is more noise tolerant, whereas high-order modulation has higher BER at the same SNR. Accordingly, BPSK gives the best low-SNR reconstruction quality, followed by QPSK and then 16QAM [2509.04787].

Encryption and decryption are reported to amplify the impact of bit errors under low SNR, while having almost no effect on reconstruction quality at high SNR. The super-resolution module significantly improves PSNR under low SNR, especially for QPSK below 8 dB and BPSK below 5 dB. The benefit diminishes at high SNR and can become smaller than the non-SR case because inferred details may be less accurate than directly transmitted details when the channel is already clean.

At 4 dB SNR, the paper gives the following representative comparisons:

| Scheme at 4 dB | Reported PSNR relation |
|---|---|
| 16QAM SREC | similar to NTSCC; 2.5 dB higher than NTSCC with the same encryption method |
| QPSK SREC | 3.0 dB higher than NTSCC; 4.6 dB higher than encrypted NTSCC |
| BPSK SREC | 2.2 dB higher than NTSCC; 6.4 dB higher than encrypted NTSCC |

The \(\eta\)-sensitivity study further differentiates operating regimes. Under 16QAM, PSNR remains lower across the examined range and grows slowly with \(\eta\) because channel errors corrupt the additional transmitted bits. Under BPSK and QPSK, PSNR improves more sharply as \(\eta\) increases but saturates after about \(\eta \approx 0.16\). For BPSK, the largest slope occurs near \(\eta \approx 0.12\), after which the gains diminish. The paper also notes that under good channel conditions, improving SNR matters less than avoiding information loss from compression.

Qualitatively, the visual results are described as showing more distortion for 16QAM under low SNR, better contour preservation for BPSK, sharper images and more visible detail with the super-resolution module, and the inability of an eavesdropper to recover meaningful image content without the key.

The paper’s broader significance is framed in secure semantic communication. Its main contributions are a secure semantic communication framework, modulo-256 encryption for semantic features, super-resolution enhancement via an RDN-based module, demonstrated low-SNR robustness under BPSK and QPSK relative to NTSCC and encrypted NTSCC baselines, and security-preserving semantic transmission. The stated implication is that semantic compression, encryption, and reconstruction enhancement can be jointly considered in a communication stack rather than optimized in isolation [2509.04787].

## 7. Assumptions, limitations, and boundary conditions

SREC is explicitly developed under several assumptions. The transmitter and receiver share the encryption key in advance; the key is delivered through a secure channel; the eavesdropper may know all model parameters but not the key; the physical channel is AWGN; training is performed at 10 dB SNR; and the target task is image transmission [2509.04787].

The paper also implies several limitations. Security depends on secure key distribution. The modulo-256 mechanism is lightweight, but the work does not provide a formal cryptographic proof beyond semantic-security intuition. The benefit of super-resolution declines at high SNR. High-order modulation suffers badly at low SNR. The study is limited to image transmission, Urban100 testing, and PSNR-based evaluation. More complex fading channels, adversarial channels, and tasks beyond image transmission are not analyzed. The effectiveness of the overall framework also depends on the quality of the underlying JSCC model.

Within those limits, SREC defines a concrete design point in secure SemCom: encrypted latent transmission combined with learned image enhancement. A plausible implication is that future secure semantic communication systems may be evaluated not only by confidentiality and channel robustness separately, but by how successfully they co-design semantic representation, protection of latent features, and task-aware reconstruction.

Source: https://www.emergentmind.com/topics/encrypted-semantic-super-resolution-enhanced-communication-srec