CPabe ,Inveted Index ,Serachable encryption
python
文件可以帮助理解abe的流程
jar
文件是使用jPBC里面的双线性对的运算,来完成ABE的算法,方案采用的是CPABE
and InvertedIndex
来完成搜索加密,
- this way with CPABE encodes the key of aes,abe can encode the files of onwers which way is quicky and easy,CPabe also decode the InvertedIndex(W,[f1,f2,f3])
- the key of this design is how to match the word of owner with the word1 of user
- how to prove the safety of this program,maby math
your pc shoud install Java 14(14 is ok in my pc),run it in termainal java -jar ABSEUI.jar
I will open the code after the report
=======
- 属性加密
- 可搜索加密 Q:如何存储用户属性 Q:属性和加密如何结合 Q:我使用属性作为密钥将用户的信息加密后,存储到云端,是这样吗? Q:hash函数如何与加密后的消息进行结合
- 将属性转成字符串,进行hash值生成attr_key
- 使用
cipher=AES.new(attr_key, AES.MODE_CBC)
,cipher = cipher.encrypt(pad(plaintext.encode(), AES.block_size))
进行加密,也可以返回iv初始向量 - 解密与上面一样
Q:如何使用abe charm\schemes\abenc中有多种abe算法 abenc后面的nc,应该是encryption的前三个字母 在该连接中提供了多种样例
abenc_bsw07
abenc_dacmacs_yj14
abenc_lsw08
abenc_maabe_rw15
abenc_maabe_yj14
abenc_tbpre_lww14
abenc_unmcpabe_yahk14
abenc_waters09
abenc_yct14
其中选择第一中算法bsw07来介绍如何使用CPABE
John Bethencourt, Brent Waters (Pairing-based) From: “Ciphertext-Policy Attribute-Based Encryption”. Published in: 2007 Available from: Notes: Security Assumption: type: ciphertext-policy attribute-based encryption (public key) setting: Pairing
- 生成群
- 生成cpabe对象
- 定义属性
- 设置访问树
- setup->pk,mk
- 生成私钥 keygen(pk,mk,属性)
- e(mk,msg,访问树)
- d(mk,sk,cipher)