<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>key management &#8211; Science</title>
	<atom:link href="https://scienmag.com/tag/key-management/feed/" rel="self" type="application/rss+xml" />
	<link>https://scienmag.com</link>
	<description></description>
	<lastBuildDate>Fri, 25 Sep 2026 23:42:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.1.2</generator>

<image>
	<url>https://scienmag.com/wp-content/uploads/2024/07/cropped-scienmag_ico-32x32.jpg</url>
	<title>key management &#8211; Science</title>
	<link>https://scienmag.com</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">73899611</site>	<item>
		<title>New AI Searches Encrypted Images in the Cloud Without Ever Decrypting Them</title>
		<link>https://scienmag.com/new-ai-searches-encrypted-images-in-the-cloud-without-ever-decrypting-them/</link>
		
		<dc:creator><![CDATA[Denise Maddox]]></dc:creator>
		<pubDate>Fri, 25 Sep 2026 23:42:57 +0000</pubDate>
				<category><![CDATA[Technology and Engineering]]></category>
		<category><![CDATA[advancements in encrypted image search technology]]></category>
		<category><![CDATA[balancing security and retrieval accuracy]]></category>
		<category><![CDATA[cipher image retrieval]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[cloud-based encrypted image retrieval]]></category>
		<category><![CDATA[content-based image retrieval]]></category>
		<category><![CDATA[DBRA-Net architecture]]></category>
		<category><![CDATA[deep learning]]></category>
		<category><![CDATA[deep neural networks for ciphertext analysis]]></category>
		<category><![CDATA[dual-branch network]]></category>
		<category><![CDATA[encrypted image matching]]></category>
		<category><![CDATA[encrypted image search]]></category>
		<category><![CDATA[feature fusion]]></category>
		<category><![CDATA[image encryption]]></category>
		<category><![CDATA[key management]]></category>
		<category><![CDATA[lightweight deep learning models for encrypted data]]></category>
		<category><![CDATA[mean Average Precision]]></category>
		<category><![CDATA[privacy preservation]]></category>
		<category><![CDATA[privacy-preserving image search]]></category>
		<category><![CDATA[residual attention]]></category>
		<category><![CDATA[residual attention networks]]></category>
		<category><![CDATA[searchable encryption]]></category>
		<category><![CDATA[secure cloud storage for images]]></category>
		<category><![CDATA[secure multimedia computing]]></category>
		<guid isPermaLink="false">https://scienmag.com/?p=215385</guid>

					<description><![CDATA[Researchers have unveiled DBRA-Net, a dual-branch residual attention network that achieves highly accurate image retrieval over encrypted cloud data while keeping computational costs low.]]></description>
										<content:encoded><![CDATA[<p>Every day, billions of photographs are uploaded to cloud servers, where they sit in vast data centers that belong to someone else. The convenience is undeniable, but so is the risk: cloud providers are, in the language of security research, semi-trusted, meaning that a curious administrator, a compromised server, or a malicious insider could in principle peek at the images stored on their machines. Encrypting images before upload solves the spying problem but creates a new one. Once an image is scrambled into noise, how can a server find the pictures you want without decrypting them first? A newly published study in the International Journal of Machine Learning and Cybernetics offers a fresh answer, combining a hardened encryption pipeline with a lightweight deep neural network that can sift through ciphertext as if it were plain imagery.</p>
<p>The research, carried out by Junhan Yang and Xin Zhao of Xi&#8217;an University of Science and Technology in China, introduces a scheme called DBRA-Net, short for Dual-Branch Residual Attention Network. The work addresses one of the most persistent tensions in secure multimedia computing: the trade-off between security, retrieval accuracy, and computational cost. Systems that prioritize strong encryption often deliver poor search precision, while systems that achieve high precision frequently rely on heavy neural networks that are impractical to deploy at cloud scale. DBRA-Net is designed to break that compromise, and the reported experimental results suggest it makes genuine progress on all three fronts simultaneously.</p>
<p>The first half of the scheme is a multi-level encryption architecture built for resistance against the attacks that plague naive image ciphers. Images are subjected to pixel confusion, which shuffles the spatial positions of pixel values, and coefficient scrambling, which randomizes the frequency-domain coefficients that compact image content into a small number of visually significant components. The dual approach matters because statistical attacks often exploit structure that survives single-layer scrambling: histograms that leak information about brightness distributions, or correlations between adjacent pixels that betray the underlying scene. By destroying both spatial and frequency-domain structure, the authors report markedly improved resistance against differential and statistical attacks, the two standard families of cryptanalysis applied to image encryption schemes.</p>
<p>Encryption is only as strong as its keys, and the scheme devotes considerable engineering to key management. A key embedding mechanism ties cryptographic keys tightly into the encryption process, while a decentralized key management architecture avoids the single point of failure that a centralized key store would represent. The system also incorporates a key update mechanism, allowing keys to be rotated over time so that long-lived encrypted archives are not protected by the same secret indefinitely. Together, these mechanisms form what the authors describe as a guarantee of key security across the entire lifecycle of the encrypted data, from initial upload through years of cloud storage.</p>
<p>The second, and arguably more novel, half of the work is the neural network that performs retrieval directly on encrypted imagery. Rather than searching for exact pixel matches, modern image retrieval relies on content-based features, compact numerical descriptors that capture the semantic essence of a picture. DBRA-Net generates these descriptors from cipher images using two parallel processing branches, each equipped with a residual attention mechanism. Residual connections, popularized by deep convolutional networks, allow information to bypass layers and gradients to flow efficiently during training, while attention mechanisms let the network selectively emphasize the visual patterns most useful for distinguishing one image from another. The combination enables deeper discriminative feature extraction without the exploding parameter counts that typically accompany deep architectures.</p>
<p>Two further components refine the network&#8217;s output. A Grouped Attention Module partitions features into groups and learns separate weighting for each, sharpening the emphasis on the most informative dimensions of the representation. An Adaptive Weighted Fusion mechanism then merges the feature vectors produced by the two branches, weighing their contributions dynamically rather than treating both branches as equally reliable regardless of the image content. This dual-branch philosophy echoes a broader trend in computer vision, where multiple specialized pathways often outperform a single monolithic feature extractor, because different branches can specialize in complementary cues such as texture, color statistics, or structural layout.</p>
<p>The most striking feature of DBRA-Net may be its size. The model contains merely 5.9 million parameters when configured for the Corel-10K dataset, a figure that is small by the standards of contemporary deep networks, some of which carry hundreds of millions or billions of weights. The authors achieved this by adopting lightweight attention computations, exploiting residual connections for representational efficiency, and strictly controlling both network depth and parameter count. The payoff is a network that retains strong representational capacity while imposing low computational overhead, a property the researchers argue is essential for practical deployment on cloud servers, where millions of queries and petabytes of storage demand efficiency as much as intelligence.</p>
<p>The experimental evaluation covers two widely used retrieval benchmarks. On Corel-10K, a challenging collection of ten thousand photographs spanning diverse semantic categories, the scheme achieves a mean average precision, or mAP, of 0.752. On UKbench, a dataset frequently used to evaluate instance-level image retrieval, it reaches an mAP of 0.863. In both cases, the authors report that the results outperform existing retrieval methods, including prior encrypted-image retrieval schemes that relied on handcrafted features, homomorphic encryption, bag-of-words models, and earlier deep learning approaches. The comparison is meaningful because mAP captures not only whether the system finds relevant images but how highly it ranks them among the returned results, a critical property for user-facing search experiences.</p>
<p>The broader significance of the work lies in its alignment with where cloud computing is heading. Privacy regulations, corporate confidentiality requirements, and rising public awareness of data harvesting are pushing more sensitive imagery, from medical scans to industrial photographs, onto encrypted storage. Retrieval over ciphertext, sometimes called searchable encryption for images, has evolved from histogram-based tricks over encrypted JPEG coefficients toward end-to-end deep learning systems that operate on fully encrypted pixels. DBRA-Net represents the latest step in that trajectory, and its lightweight design addresses a criticism that has dogged the field: that deep-learning-based encrypted retrieval is too expensive for real-world cloud deployments.</p>
<p>Challenges remain, as they always do in a young field. The evaluation covers two benchmark datasets, and real-world archives with billions of heterogeneous images would stress any retrieval system further. The security analysis, while strong against differential and statistical attacks, will inevitably be tested by future cryptanalysts probing the scheme&#8217;s chaos-based and scrambling components. Nevertheless, the study demonstrates that the long-standing trade-off between searching securely and searching well is not immutable. With careful attention to key management, disciplined network design, and attention mechanisms that squeeze discriminative power out of every parameter, it appears possible to let a cloud server find your images without ever being able to look at them. As more of the world&#8217;s visual memory migrates to infrastructure owned by strangers, that capability may shift from a research curiosity to an everyday expectation.</p>
<p><strong>Subject of Research:</strong> Privacy-preserving cipher image retrieval in cloud computing using a dual-branch residual attention network</p>
<p><strong>Article Title:</strong> DBRA-Net: privacy-preserving cipher image retrieval via dual-branch residual attention network</p>
<p><strong>Article References:</strong> Yang, J., &amp; Zhao, X. (2026). DBRA-Net: privacy-preserving cipher image retrieval via dual-branch residual attention network. <em>International Journal of Machine Learning and Cybernetics, 17</em>(10), Article 467. <a href="https://doi.org/10.1007/s13042-026-03303-1" rel="noopener noreferrer">https://doi.org/10.1007/s13042-026-03303-1</a></p>
<p><strong>Image Credits:</strong> AI Generated</p>
<p><strong>DOI:</strong> <a href="https://doi.org/10.1007/s13042-026-03303-1" rel="noopener noreferrer">10.1007/s13042-026-03303-1</a></p>
<p><strong>Keywords:</strong> cipher image retrieval, privacy preservation, cloud computing, image encryption, residual attention, deep learning, feature fusion, dual-branch network, key management, mean average precision, searchable encryption, content-based image retrieval</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">215385</post-id>	</item>
	</channel>
</rss>
