我必须为我的项目实现以下方案。
我尝试通过使用json.dumps
来遵循here的示例:
cipher_text = hyb_abe.encrypt(master_public_key, fileInBase64Format, policy) #this function comes from the charm-crypto framework and returns a dictionary
encrypted_bytes = json.dumps(cipher_text) # produces error TypeError: Object of type 'Element' is not JSON serializable
hyb_abe.encrypt
函数的代码为here
但是我得到
TypeError: Object of type 'Element' is not JSON serializable
我的案子有什么解决方法?
编辑
在调试模式下字典值的照片