论文阅读-Achieving Searchable Encryption Scheme with Search Pattern Hidden(2020)

论文成果

  1. 指出Wang等人提出的具有搜索模式保证的SE方案不能在服务器端正确地执行搜索操作。(Inverted index based
    multi-keyword public-key searchable encryption with strong privacy guarantee,” in 2015 IEEE Conference on Computer Communications (INFOCOM), 2015, pp. 2092-2100.)
  2. 我们提出了第一个有效的SE方案来隐藏搜索模式,同时支持连接关键字搜索。(使用同态乘法加密和同态加法加密)
  3. 证明了其安全性

方案流程

符号表

在这里插入图片描述

总体流程图

在这里插入图片描述

1. (PP, SKC2 , SKO, I) ←Setup(1κ, DB)

  1. 使用BCP.SetupBCP.KeyGen得到参数(pp, msk, pk, sk)。其中公开系统参数PP = (pp, pk), 将SKC2 = msk 发送给C2 ,自己保留SKO= sk
  2. Index生成算法:
    在这里插入图片描述

2. Tr ← TGen(W, Q, PP)

Q为查询关键词集合:Q = {w1′, w′2, · · · , w′q}

  1. 判断每个关键词在不在Q中,在则分配随机变量ri∈R,不在则分配ri=0
  2. 加密每个参数ri,EiBCP.Enc(pk, ri).

3. Enc(P(x)) ← Search(Tr, I,PP, SKC2 )

加密生成算法:
在这里插入图片描述
其中Enc(P∆(x)) =Enc(∑Mi=1 ri * Pwi (x) · vi) = Enc(∑wi∈Q ri · Pwi (x) · vi).

4. P(x)←Decrypt(Enc(P(x)))

用户端解密后得到P(x),求出其根(对应文件的ID),然后再直接去取回对应文件即可

思考

  1. 对于是否隐藏Search Pattern是一个问题,原文中表示生成陷门算法是随机的,所以从陷门中不能获取任何信息,就直接说隐藏了Search Pattern,而Search Pattern的定义是”是否能确定两次搜索了同样的关键词“,那么我们是否可以通过返回的密文文件完全相同来大概率猜测搜索了同一个关键词?(即在游戏中超过了50%的概率获胜)
  2. 使用同态加密的性能上是一个问题
  3. 倒排索引的思想能否使用?
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
Unlike the classical encryption schemes,keys are dispensable in certain PLS technigues, known as the keyless secure strat egy. Sophisticated signal processing techniques such as arti- ficial noise, beamforming,and diversitycan be developed to ensure the secrecy of the MC networks.In the Alice-Bob-Eve model, Alice is the legitimate transmitter, whose intended target is the legitimate receiver Bob,while Eve is the eavesdropper that intercepts the information from Alice to Bob.The secrecy performance is quantified via information leakagei.ethe dif ference of the mutual information between the Alice-Bob and Alice-Eve links. The upper bound of the information leakage is called secrecy capacity realized by a specific distribution of the input symbols, namely,capacity-achieving distribution.The secrecy performance of the diffusion-based MC system with concentration shift keying(CSK)is analyzed from an informa- tion-theoretical point of view,providing two paramount secrecy metrics, i.e., secrecy capacity and secure distance[13].How ever, only the estimation of lower bound secrecy capacity is derived as both links attain their channel capacity.The secrecy capacity highly depends on the system parameters such as the average signal energy,diffusion coefficientand reception duration. Moreover, the distance between the transmitter and the eavesdropper is also an important aspect of secrecy per- formance. For both amplitude and energy detection schemes secure distance is proposed as a secret metricover which the eavesdropper is incapable of signal recovery. Despite the case with CSK,the results of the secure metrics vary with the modulation type(e.g.pulse position,spacetype) and reception mechanism(e.g.passive,partially absorbingper fectly absorbing).For ease of understanding,Figure 3 depicts the modulation types and the corresponding CIRs with different reception mechanisms. Novel signa processing techniques and the biochemical channel properties can further assist the secrecy enhancement in the MC system.The molecular beam forming that avoids information disclosure can be realized via the flow generated in the channel.Besidesnew dimensions of diversity, such as the aforementioned molecular diversity of ionic compounds, can beexploited. Note that the feasibility of these methods can be validated by the derived secrecy metrics.
06-13
论文主要介绍了在某些物理层安全技术,与传统加密技术不同的是,密钥并不是必须的,这种技术被称为“无密钥安全策略”。通过使用先进的信号处理技术,如人工噪声、波束成形和多样性等,可以确保分子通信网络的安全性。文章还介绍了Alice-Bob-Eve模型,其Alice是合法的发射器,其目标是合法的接收器Bob,而Eve是窃听者,从Alice到Bob的信息进行拦截。通过信息泄漏的度量,即Alice-Bob和Alice-Eve之间的互信息差异,来量化保密性能。信息泄漏的上界称为特定输入符号分布实现的保密容量。从信息论的角度分析了基于扩散的浓度偏移键控分子通信系统的保密性能,提供了两个重要的保密度量,即保密容量和安全距离。然而,只得到了保密容量的下界估计,因为两条链路都达到了其信道容量。保密容量高度依赖于系统参数,如平均信号能量、扩散系数和接收持续时间。此外,发射器与窃听者之间的距离也是保密性能的重要方面。对于幅度和能量检测方案,提出了安全距离作为一种保密度量,超过这个距离窃听者无法恢复信号。尽管使用CSK的情况,保密度量的结果会随着调制类型(如脉冲位置、空间类型)和接收机制(如被动、部分吸收、完全吸收)而有所不同。为了方便理解,图3描述了不同接收机制下的调制类型及其相应的通道冲激响应。此外,新的信号处理技术和生物化学通道特性可以进一步提高分子通信系统的保密性。通过通道产生的流可以实现分子波束成形,避免信息泄露。此外,还可以利用分子离子化合物等新的多样性维度。需要注意的是,这些方法的可行性可以通过推导的保密度量进行验证。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值